我的 php 错误日志中有下一个错误:PHP Fatal error: Cannot redeclare GetText() in /usr/local/www/apache22/data/sv3/is/include/function.php on line 211
该函数如下所示:
function GetText($id) {
$query = mysql_query("SELECT `desc` FROM `account`.`is_desc` WHERE `id` = $id LIMIT 1;");
$sql = mysql_fetch_array($query);
if(empty($sql[0])) {
$sql[0] = "Descriere indisponibila";
}
return $sql[0];
}
浏览器中的返回是错误 500!