我正在尝试生成一个xml行,但由于某种原因,php会给我带来以下错误
function get_galleryxml_row($row) {
$xml_output = '';
$images = $this->exporter->get_property_gallery_data($row['id']);
foreach($images as $field => $value)
$xml_output .= "\n\t\t" . "<$field>". $value ."</$field>";
return $xml_output;
}
[20-May-2015 16:13:17 UTC] PHP注意:
中的数组到字符串转换
我的代码有什么问题,如何解决?