写入时xml文件中的错误?

时间:2012-04-03 09:47:20

标签: php xml yii

我正在写一个XML文件到一个文件夹,而写一个点(。)会在XML标记的开头附加,因为它在读取时会引发错误。

$data = Yii::app()->CURL->run('http:// my ip address/project/API/getxml.php',FALSE,
        array(
            'id'=>'75'
            )
        );

        thefile= Yii::app()->basepath."/../xml/new_api_test.xml";
        $openedfile = fopen($thefile, "w");
        fwrite($openedfile, $data);
        fclose($openedfile);

0 个答案:

没有答案