调用成员函数查找非对象

时间:2014-05-05 11:39:29

标签: php

我已经检查了旧线程,并且我的对象中没有空值。

在下面的代码中,我在$ html中获得了正确的页面源代码。我检查了有正确的类名。这个脚本已经正常工作了。

现在它出错:Call to member function find() on a non-object

    function getParameter($url)
    {
        $root = new stdClass();
        $items = array();
        $items = array();
            $aContext = array(
                 'http' => array(
                 'proxy' => 'tcp://182.253.50.238:8080', // This needs to be the server and the port of the Proxy Server.
                 'request_fulluri' => true,
                 ),
                 );
            $cxContext = stream_context_create($aContext);
        $html = file_get_contents($url, false, $cxContext);
        echo $html;
        //$html = file_get_html($url);
        if($html)
        {
                $containers1 = $html->find('div.mapbox div.mapbox-text strong.street-address address'); //Gives error in this line
                }
 }

0 个答案:

没有答案