我有:
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{}