// Be carefull if you migrate or use local machine
// for test/development.
// Windows directory separators: "\" and "/"
// You may mix separators "C:\somedir\www/img/bg.jpg".
// Mixed separators path work fine in other functions
// But simplexml_load_file() failed with mixed separators.
// Examples:
include("C:\dir\my.php"); // work (windows)
include("C:\dir/my.php"); // work (windows) with mixed
include("C:/dir/my.php"); // work (windows, linux)
simplexml_load_file("C:\dir\my.php"); // work
simplexml_load_file("C:\dir/my.php"); // failed with mixed
simplexml_load_file("C:/dir/my.php"); // work