我正在写一个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);