我知道已经提出了类似的问题,但是,我已经尝试过这些解决方案而没有任何成功。我一直收到这个错误:
致命错误:在非对象中调用成员函数asXML() ......在第188行
这是我的代码:
$dom->save("productInfo.xml");
$feedHandle = file_get_contents("productInfo.xml");
$params = array(
'AWSAccessKeyId'=> "*****",
'Action'=>"SubmitFeed",
'SellerId'=> "********",
'SignatureMethod' => "HmacSHA256",
'SignatureVersion'=> "2",
'Timestamp'=> gmdate("Y-m-d\TH:i:s.\\0\\0\\0\\Z", time()),
'Version' => "2009-01-01",
'FeedContent' => $feedHandle,//must be a string
'FeedType' => "_POST_PRODUCT_DATA_");
// Sort the URL parameters
$url_parts = array();
foreach(array_keys($params) as $key)
$url_parts[] = $key . "=" . str_replace('%7E', '~', rawurlencode($params[$key]));
sort($url_parts);
// Construct the string to sign
$url_string = implode("&", $url_parts);
$string_to_sign = "GET\nmws.amazonservices.com\n/Feeds/2009-01-01\n" . $url_string;
// Sign the request
$signature = hash_hmac("sha256", $string_to_sign, "******", TRUE);
// Base64 encode the signature and make it URL safe
$signature = urlencode(base64_encode($signature));
$url = "https://mws.amazonservices.com/Feeds/2009-01-01" . '?' . $url_string . "&Signature=" . $signature;
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL,$url);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
curl_setopt($ch, CURLOPT_TIMEOUT, 15);
curl_setopt($ch, CURLOPT_SSL_VERIFYHOST, 0);
curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, 0);
$response = curl_exec($ch);
$parsed_xml = simplexml_load_string($response);
@fclose($feedHandle);
Header('Content-type: text/xml');
print($parsed_xml->asXML());
我知道$parsed_xml === FALSE
所以我知道XML的处理不起作用。我怀疑它与$feedHandle
有关,因为我之前收到的错误是数组$params
中的FeedContent为空。我知道XML格式正确,因为我已将其打印出来并直接将其放在必填字段中并且工作正常。此外,我们在类似的文件中使用curling并且它工作正常,所以我认为这也不是问题。
答案 0 :(得分:2)
您收到的错误表明simplexml_load_string
函数调用失败。如果XML文件的处理成功,它只返回一个对象,否则返回一个布尔 FALSE 。尝试检查是否$parsed_xml === FALSE
。如果它返回 FALSE ,请尝试检查XML文件本身。
事实上,由于您正在为文件本身进行卷曲,因此请检查所有字段是否设置正确以及您正在使用的URL是否正确无法打印出来。
答案 1 :(得分:-1)
使用try catch,而不是使用Exception类,尝试Throwable类
示例: -
try {
$x = false;
var_dump($x->asXML());
} catch(Throwable $e) {
echo $e->getMessage();
}