我正在尝试从我的php脚本中读取这个URL:
http://test.cellpay.com.np:8181/cellcom?FN=123&fromMobile=01670746301&phoneNumber=01670746301&PIN=123456&amount=0
请先加载网址,查看回复并告诉我该怎么做。
我尝试了以下内容:
file_get_contents
simplexml_load_string
simplexml_load_file
CURL
在所有情况下都失败了。 我保存了xml并将其上传到
http://vtopup.tk/1.xml
我可以读到这个,但不是原来的。 请帮我。我厌倦了搜索和应用......
感谢。
答案 0 :(得分:0)
经过测试,它正在运作。
<?php
$url = 'http://test.cellpay.com.np:8181/cellcom?FN=ATW&fromMobile=testuser&phoneNumber=01670746301&PIN=z2ag&amount=0';
$xml = simplexml_load_file($url) or die("feed not loading");
var_dump($xml);
答案 1 :(得分:0)
!!!!!!!!!终于解决了!!!!!!!!! 这些都是关于php版本的 我试过PHP 5.4.27,没有工作.... 最后尝试从PHP 5.6.3,它的工作原理。如此简单而神奇。
感谢Veenex和file_get_contents returns empty string 尽一切努力。
谢谢你们,非常感谢你们。