PHP注意:由于连接问题导致数组到字符串错误

时间:2015-05-20 16:15:16

标签: php xml foreach

我正在尝试生成一个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注意:

中的数组到字符串转换

我的代码有什么问题,如何解决?

0 个答案:

没有答案