有点愚蠢的问题,但我使用的解决方案api,当我提交URL时,它只显示一个数字。我想在我的网站上使用这个号码作为另一项任务的一部分,但我不确定如何获取它并在我的PHP网站上显示它。
api还通过XML输出其他位,然后我可以使用下面的代码获取。但是,当值仅显示在页面上而不是XML中时,我不确定如何这样做
<?php
$xml=simplexml_load_file("myurl.co.uk") or die("Error: Cannot create object");
?>
答案 0 :(得分:0)
PHP代码
<?php
$xml=simplexml_load_file("note.xml") or die("Error: Cannot create object");
//print_r($xml);
echo $xml->to;
echo "<br>";
echo $xml->from; ///and so on
?>
note.xml 文件
<?xml version="1.0" encoding="UTF-8"?>
<note>
<to>Tove</to>
<from>Jani</from>
<heading>Reminder</heading>
<body>Don't forget me this weekend!</body>
</note>
<强>编辑:强> 我在下面得到了您的评论,为什么不使用
$homepage = file_get_contents('http://www.example.com/');
echo $homepage;