私は持っています:
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{}