douchuoxuan3177 2019-03-16 09:29
浏览 51
已采纳

PHP创建ping脚本需要将响应转换为对象来读取它

I'm creating a RCP ping script. The response I get when I ping looks like this:

<?xml version="1.0" ?>
<methodResponse>
    <params>
        <param>
            <value>
                <struct>
                    <member>
                        <name>flerror</name>
                        <value>
                            <boolean>0</boolean>
                        </value>
                    </member>
                    <member>
                        <name>message</name>
                        <value>
                            <string>Thanks for the ping.</string>
                        </value>
                    </member>
                </struct>
            </value>
        </param>
    </params>
</methodResponse>

I want to read the XML response and write the message to the user. However to do this I need to convert the response into a object (I think).

My script:

$context = stream_context_create(array('http' => array(
    'method' => "POST",
    'header' => "Content-Type: text/xml
",
    'content' => $xml
)));
$file = @file_get_contents("https://rpc.twingly.com/", false, $context);
if ($file === false) {
    echo '<p>Could not connect!</p>';
}
elseif ($file) {


    echo '<p>The following response was returned:</p>';
    echo '<pre>'.htmlspecialchars($file).'</pre>';

    $i = 0;
    foreach ($file->params->param->value->struct->member as $object){

        $name[$i]       = $object->name;
        $value[$i]      = $object->value;

        echo"
        <p>Name: $name[$i]<br />
        Name: $value[$i]</p>
        ";

        $i++;
    }
}
else {
    echo '<p>Empty response!</p>';
}

My error:

Notice: Trying to get property 'params' of non-object in C:\Users\usr\wamp64\www\fitnesslife\blog\my_blog_ping.php on line 556

Notice: Trying to get property 'param' of non-object in C:\Users\usr\wamp64\www\fitnesslife\blog\my_blog_ping.php on line 556

Notice: Trying to get property 'value' of non-object in C:\Users\usr\wamp64\www\fitnesslife\blog\my_blog_ping.php on line 556

Notice: Trying to get property 'struct' of non-object in C:\Users\usr\wamp64\www\fitnesslife\blog\my_blog_ping.php on line 556

Notice: Trying to get property 'member' of non-object in C:\Users\usr\wamp64\www\fitnesslife\blog\my_blog_ping.php on line 556

Warning: Invalid argument supplied for foreach() in C:\Users\usr\wamp64\www\fitnesslife\blog\my_blog_ping.php on line 556

  • 写回答

2条回答 默认 最新

  • doulin2025 2019-03-16 09:34
    关注

    file_get_contents() returns a string, not an XML object.

    You can convert it to an XML object with simplexml_load_string() like this:

    $xmlfile = simplexml_load_string($file);
    

    Another approach is to use the SimpleXMLElement() constructor while you get the contents:

    $xmlfile = new SimpleXMLElement(file_get_contents("https://rpc.twingly.com/", false, $context));
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
查看更多回答(1条)

报告相同问题?

悬赏问题

  • ¥15 在若依框架下实现人脸识别
  • ¥15 网络科学导论,网络控制
  • ¥100 安卓tv程序连接SQLSERVER2008问题
  • ¥15 利用Sentinel-2和Landsat8做一个水库的长时序NDVI的对比,为什么Snetinel-2计算的结果最小值特别小,而Lansat8就很平均
  • ¥15 metadata提取的PDF元数据,如何转换为一个Excel
  • ¥15 关于arduino编程toCharArray()函数的使用
  • ¥100 vc++混合CEF采用CLR方式编译报错
  • ¥15 coze 的插件输入飞书多维表格 app_token 后一直显示错误,如何解决?
  • ¥15 vite+vue3+plyr播放本地public文件夹下视频无法加载
  • ¥15 c#逐行读取txt文本,但是每一行里面数据之间空格数量不同