好的......我正在使用PHP 5(要温和,还在学习PHP)。 CURL已启用。尝试将API或API中的XML或JSON输出加载到对象,但没有任何反应。当我手动执行有问题的URL时,我得到了我期待的内容。
这是我的代码:
class XmlToJson {
public function Parse ($url) {
$fileContents = file_get_contents($url);
$fileContents = str_replace(array("\n", "\r", "\t"), '', $fileContents);
$fileContents = trim(str_replace('"', "'", $fileContents));
$simpleXml = simplexml_load_string($fileContents);
$json = json_encode($simpleXml);
return $json;
}
}
$_MySQLServer = "localhost";
$_MySQLServerUserName = "";
$_MySQLServerPassword = "";
$_MySQLDatabaseName = "";
$_SSActiveWear_UserID = "*****";
$_SSActiveWear_APIKey = "*****";
$_SSActiveWear_APIBaseURL = "https://*****/v2";
$_CategoryURL = "/categories/";
$_StylesURL = "/styles/";
$_ProductsURL = "/products/";
$_SpecsURL = "/specs/";
$_SSActiveWear_MediaType = "xml";
//$_conn = mysqli_connect($_MySQLServer, $_MySQLServerUserName, $_MySQLServerPassword, $_MySQLDatabaseName);
//Insert or Update Categories
$_URL = $_SSActiveWear_APIBaseURL . $_CategoryURL;
$_URL = $_URL . "?mediatype=$_SSActiveWear_MediaType&UserName=$_SSActiveWear_UserID&Password=$_SSActiveWear_APIKey";
$OBJ = simplexml_load_string($_URL);
print_r($OBJ);
我做错了什么?
修改1
添加了以下代码:
$xml = simplexml_load_file($_URL) or die("Error: Cannot create object");
print_r($xml);
它死了。这是否意味着代码有问题?
答案 0 :(得分:0)
试试这个:
$OBJ = simplexml_load_string(file_get_contents($_URL));
如果您想知道代码无效的原因,您尝试从URL加载XML,但“simplexml_load_string”从字符串加载XML。
答案 1 :(得分:0)
我终于想通了......更重要的是,我终于在Google上找到了一个有帮助的网站。这是fsockopen with http authentication problem中的第一个答案。
所以这是有效的代码:
file_get_contents("https://$_SSActiveWear_UserID:$_SSActiveWear_APIKey@$_SSActiveWear_APIBaseURL$_CategoryURL/?mediatype=$_SSActiveWear_MediaType");
mediatype可以是json或xml