Chrome:出錯
This page contains the following errors:
error on line 2 at column 1: Extra content at the end of the document
Below is a rendering of the page up to the first error.
請問老師這是怎么回事?
This page contains the following errors:
error on line 2 at column 1: Extra content at the end of the document
Below is a rendering of the page up to the first error.
請問老師這是怎么回事?
2015-04-03
舉報
2015-11-19
解決了?
public static function xmlToEncode($data){
$xml="";
foreach($data as $key=>$value){
$arr="";
if(is_numeric($key){
$arr.="<item>";
}
$xml.="<{$key}>";
//$xml.=$value這樣寫就會報錯誤,改成下面
$xml.=is_array($value)?self::xmlToEncode($value):$value;
$xml.="</{$key}>\n";
}
2015-11-19
我也是這個問題
This page contains the following errors:
error on line 2 at column 1: Extra content at the end of the document
Below is a rendering of the page up to the first error.
怎么解決的
2015-04-03
已解決,發完問題才看到優化后的代碼!謝謝老師!