0

我有:

 function fetchlinks(){
    ## include the simpledom helper #########################################################
    $this->load->helper('simpledom');
    $this->simpledom->file_get_html("http://www.thesite.net/thesitepath");
        ############################################################################################  
        $htmlToSearch = file_get_html("http://www.thesite.net/thesitepath");
        foreach($htmlToSearch->find('a') as $element){
            echo "<h1 style='color:red; '>".$element->href."</h1> <br />";
        }    
    }

我在这里调用并使用该函数:

$this->load->helper('simpledom');
$this->simpledom->file_get_html("http://www.thesite.net/thesitepath");

然后我如何我的foreach{}

4

1 回答 1

0

辅助函数只是声明的函数,如果需要它们会被加载。它们不是 CI 实例的属性。

请参阅此处的文档。

于 2013-01-23T01:07:17.550 回答