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 に答える