file_get_contents阶段XML
file_get_contents phase XML
正在尝试从 http://66.85.14.212:7254
运行 file_get_contents
有人对我如何查询特定值有任何建议吗?
我正在通过给定的代码获取值(它工作正常。):-
<?php
$url="http://66.85.14.212:7254/";
$ch = curl_init();
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
curl_setopt($ch, CURLOPT_URL, $url);
$data = curl_exec($ch);
curl_close($ch);
$xml = simplexml_load_string($data);
echo "<pre>";
print_r($xml);
//for single variable you can write
echo $xml->Name;
?>
正在尝试从 http://66.85.14.212:7254
运行 file_get_contents有人对我如何查询特定值有任何建议吗?
我正在通过给定的代码获取值(它工作正常。):-
<?php
$url="http://66.85.14.212:7254/";
$ch = curl_init();
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
curl_setopt($ch, CURLOPT_URL, $url);
$data = curl_exec($ch);
curl_close($ch);
$xml = simplexml_load_string($data);
echo "<pre>";
print_r($xml);
//for single variable you can write
echo $xml->Name;
?>