Teach you how to quickly match pictures in articles in php in one minute!
It’s very simple, just one function can do it!
The following teaches you how to use preg_match_all in php to match pictures in articles
##preg_match_all function:
int preg_match_all ( string pattern, string subject, array matches [, int flags] )
$pattern="//"; $con = file_get_contents("https://www.jb51.net/news/jb-1.html"); preg_match_all($pattern,$con,$match); print_r($match);
PHP Video Tutorial"
The above is the detailed content of Teach you how to quickly match pictures in articles in php in one minute. For more information, please follow other related articles on the PHP Chinese website!