function getContactActiveEmails($eid)
{
global $db;
if ($eid) {
$sql = "SELECT email FROM activeEmails WHERE id = $eid";
return $db->GetCol($sql);
}
}
我得到的錯誤「無法重新聲明函數getContactActiveEmails
」不能重新聲明函數錯誤
它給人的行數是函數的最後一行 - 在}
所有文件被調用require_once
。這是整個代碼庫中唯一定義getContactActiveEmails
的地方。爲什麼是這樣?
您是否在不同的文件中使用同名的函數,或者使用這個函數有多個文件副本? – KingCrunch 2011-05-12 17:38:20
也許你是在偶然的地方用關鍵字「function」調用函數? – 2011-05-12 17:39:47
這是定義getContactActiveEmails的唯一地方。它被稱爲在其他地方的兩個地方。 $ emails = getContactActiveEmails($ this-> recipientID); $ emails = getContactActiveEmails($ eid); – SickHippie 2011-05-12 17:40:42