function parse($file) { global $str; ob_start(); include($file); $buffer = ob_get_contents(); ob_end_clean(); return $buffer; } function parse($file) { global $str; ob_start(); include($file); $buffer = ob_get_contents(); ob_end_clean(); return $buffer;}
Tag Archives: file_get_contents
PHP Change encoding from “file_get_contents”
$requestAddress = “your XML url”; $xml_str = file_get_contents($requestAddress,0); $xml_str = mb_convert_encoding($xml_str, ‘UTF-8’, “iso-8859-7”); //mb_convert_encoding(‘The URL’, ‘The URL Encoding’, ‘Your encoding’)