我的代码在localhost上完美运行.. 但是当我将它发送到网络时,我收到了这个错误:
PHP Parse错误:第60行的E:\ home \ site \ Web \ sw \ class \ sql.php中的解析错误
以下是第60行:
if($caractere) {
$code = preg_replace_callback(
"/(SW_(\w+))/",
function($matches) use ($line) { //THIS IS THE LINE 60
return utf8_encode($line[$matches[2]]);
},
$codigoHtmlDeRetorno
);
echo $codigo;
}
我真的无法理解!
故障在哪里?