hoangthi Posted April 4, 2012 Share Posted April 4, 2012 This is source of a page: http://vn-ace.com/forum/test.txt I want to get contents betweent <blockquote class="postcontent restore"> and </blockquote> but i dont know how to do ? How can i do ? Please help me. I am newbie. Thanks Link to comment https://forums.phpfreaks.com/topic/260342-get-contents-of-page-source/ Share on other sites More sharing options...
scootstah Posted April 4, 2012 Share Posted April 4, 2012 Something like: $source = file_get_contents('test.txt'); $pattern = '/<blockquote class="postcontent restore">(.*?)<\/blockquote>/'; preg_match_all($pattern, $source, $matches); Link to comment https://forums.phpfreaks.com/topic/260342-get-contents-of-page-source/#findComment-1334339 Share on other sites More sharing options...
The Little Guy Posted April 4, 2012 Share Posted April 4, 2012 scootstah, I don't think your code will work, because it doesn't support multiline This supports multiline: $source = file_get_contents('test.txt'); $pattern = '/<blockquote class="postcontent restore">(.*)<\/blockquote>/isU'; preg_match_all($pattern, $source, $matches); print_r($matches); Link to comment https://forums.phpfreaks.com/topic/260342-get-contents-of-page-source/#findComment-1334421 Share on other sites More sharing options...
hoangthi Posted April 5, 2012 Author Share Posted April 5, 2012 so, what should i do ? Link to comment https://forums.phpfreaks.com/topic/260342-get-contents-of-page-source/#findComment-1334498 Share on other sites More sharing options...
hoangthi Posted April 5, 2012 Author Share Posted April 5, 2012 how can i get each element of $matches Ex: $matches[1], $matches[2]... Link to comment https://forums.phpfreaks.com/topic/260342-get-contents-of-page-source/#findComment-1334500 Share on other sites More sharing options...
scootstah Posted April 5, 2012 Share Posted April 5, 2012 With a foreach loop. Link to comment https://forums.phpfreaks.com/topic/260342-get-contents-of-page-source/#findComment-1334591 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.