Development Blog by Professionals
Posts tagged file_get_contents
PHP Change encoding from “file_get_contents”
Dec 14th
$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’)


