Yii::import('ext.SimpleHTMLDOM.SimpleHTMLDOM'); // Create DOM from URL or file $simpleHTML = new SimpleHTMLDOM; $html = $simpleHTML->file_get_html('http://www.google.com/'); // Find all images foreach($html->find('img') as $element) echo $element->src . '<br>'; // Find all links foreach($html->find('a') as $element) echo $element->href . '<br>';
Total 1 comment
Thanx simply worked. My Code Load MLB game schedule from espn, I worked hard but finally i got it, it returns array of game day, games vs concatinated with game time in array
Leave a comment
Please login to leave your comment.