Skip to content

Instantly share code, notes, and snippets.

@thephpx
Created August 2, 2012 11:07
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save thephpx/3236293 to your computer and use it in GitHub Desktop.
Save thephpx/3236293 to your computer and use it in GitHub Desktop.
sample code for simple dom parser in codeigniter
$this->load->library('simple_html_dom');
$raw = file_get_html('http://faisalbd.com');
foreach($raw->find('a') as $element){
echo $element->href . '<br>';
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment