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 python摄像头画面无法显示
  • ¥15 关于#3d#的问题:d标定算法(语言-python)
  • ¥15 cve,cnnvd漏洞扫描工具推荐
  • ¥15 图像超分real-esrgan网络自己训练模型遇到问题
  • ¥15 如何构建全国统一的物流管理平台?
  • ¥100 ijkplayer使用AndroidStudio/CMake编译,如何支持 rtsp 直播流?
  • ¥15 用js遍历数据并对非空元素添加css样式
  • ¥15 使用autodl云训练,希望有直接运行的代码(关键词-数据集)
  • ¥50 python写segy数据出错
  • ¥20 关于线性结构的问题:希望能从头到尾完整地帮我改一下,困扰我很久了