1

我有控制器

<?php

class Onetimescan extends CI_Controller{

    public function index() {
            #LOAD -->>>> LIB ###########
           $this->load->library('session');  ##    LOAD LIBS:  SESSION 
           $this->load->helper('simpledom');

           #LOAD -->>>> MODEL
           $this->load->model('scanmodel');
                $this->scanmodel->loadurlbasedonsessid($this->session->userdata('session_id')); // echo out inserted domain in loadurlbasedonsessid() func
                $sss= $this->session->userdata('tld'); // echo $sss;

       $siteToSearch = file_get_html($sss);
       foreach($siteToSearch->find('form') as $element){
            echo "<h1 style='color:red; '>".$element->action."</h1> <br />";
        }     
    }
}
?>

Call to a member function find() on a non-object在这条线上遇到了一个致命错误:

   foreach($siteToSearch->find('form') as $element){

simpledom 是我在顶部加载的一个助手(实际上称为 simpledom_helper.php),它的 file_get_html 定义如下:

[http://pastebin.com/HaJtKfNb][1]

我在这里做错了什么?我尝试像这样定义函数,public function file_get_html{}但这会引发错误。

我通过添加解决了这一切:

$prefix = "http://www.";
                //echo "SSS is:  ".$sss;
           $siteToSearch = file_get_html($prefix.$sss);

已修复>> 该 url 试图作为完全合格的域get_file_contents(somedomain.com),但缺少该域。http://www.这个功能get_file_contents似乎需要http://www.

4

1 回答 1

1

辅助函数应该这样调用,因为它们不是对象:

$this->load->helper('simpledom');    
$siteToSearch = file_get_html($sss);
于 2013-02-02T01:19:54.350 回答