//$this->load->view('welcome_message');
$this->load->library('Simple_html_dom');
$html = file_get_html('http://localhost/test/reg.htm');
foreach($html->find('.single_block ul.company_info') as $e)
{
echo $e->plaintext;
}
递进搜索
//$this->load->view('welcome_message');
$this->load->library('Simple_html_dom');
$html = file_get_html('http://localhost/test/reg.htm');
foreach($html->find('.single_block ul.company_info li') as $e)
{
echo $e->find('.gray',0)->plaintext;
}