Tag: csv

  • how to get xml CDATA content and write in csv format in php?

    <!–?php $url = ‘http://calendar.forex-tsd.com/calendar.php?xml=1&calendar[]=4’; //get file content but not display in browser because xml content some <![CDATA[ CDATA – (Unparsed) Character Data $test = file_get_contents($url); //so we replace replace with @#$ and store into $arr array variable. $arr=explode(‘@#$’,str_replace(‘]]>’,”,str_replace(‘<![CDATA[‘,’@#$’,$test))); $str[]=”; //we open or create a file.csv file. $fp = fopen(‘file.csv’, ‘w’); //we write a data in…