PHP uses regular expressions to get a picture URL,
This example describes how PHP uses regular expressions to get a picture URL. Share to everyone for your reference.
The implementation method is as follows:
Copy the Code code as follows:
<?php
Header ("Content-type:text/html;charset=utf-8");
$str = '
';
$pattern = "/[img| img].*?src=[' |\ '] (. *? (?: [. gif|. JPG])) [' |\ '].*? [\/]?>/];
Preg_match_all ($pattern, $str, $match);
echo "
";
Print_r ($match);
?>
I hope this article is helpful to everyone's PHP programming.
http://www.bkjia.com/PHPjc/943815.html www.bkjia.com true http://www.bkjia.com/PHPjc/943815.html techarticle PHP uses regular expressions to get the image URL method, this article describes the PHP using regular expressions to get the image URL method. Share to everyone for your reference. The concrete implementation method is as follows ...