简单的 xml 问题/google checkout...bozo
大家好,我正在将一个curl 响应输入到一个简单的xml 对象中。
$xml = simplexml_load_string($redirect);
$xml.asXml() 得到了我这个 ->
<?xml version="1.0" encoding="UTF-8"?>
<checkout-redirect xmlns="http://checkout.google.com/schema/2" serial-number="9160aabc- 5efe-4f9e-bb90-71ce75d7815f">
<redirect-url>https://sandbox.google.com/checkout/view/buy? o=shoppingcart&shoppingcart=222826053769344</redirect-url>
</checkout-redirect>
当我这样做时: $xml->redirect-url
ErrorException [ Notice ]: Use of undefined constant url - assumed 'url'
die(var_dump($xml->redirect-url));
我不应该能够像这样访问它吗?
Hey guys im feeding a curl response into a simple xml object.
$xml = simplexml_load_string($redirect);
$xml.asXml() gets me this ->
<?xml version="1.0" encoding="UTF-8"?>
<checkout-redirect xmlns="http://checkout.google.com/schema/2" serial-number="9160aabc- 5efe-4f9e-bb90-71ce75d7815f">
<redirect-url>https://sandbox.google.com/checkout/view/buy? o=shoppingcart&shoppingcart=222826053769344</redirect-url>
</checkout-redirect>
when I do: $xml->redirect-url
ErrorException [ Notice ]: Use of undefined constant url - assumed 'url'
die(var_dump($xml->redirect-url));
shouldn't I be able to access it like this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以尝试
$xml->{'redirect-url'}
吗?我真的不知道这是否有效,但你可以尝试一下:D
Can you try
$xml->{'redirect-url'}
?I really don't know if that works, but you can give it a try :D