Home  >  Article  >  Backend Development  >  PHP提取字符串中的图片地址[正则表达式]_php技巧

PHP提取字符串中的图片地址[正则表达式]_php技巧

WBOY
WBOYOriginal
2016-05-17 09:14:221214browse
复制代码 代码如下:

$str='

';
$pattern="//";
preg_match_all($pattern,$str,$match);
print_r($match);
?>

结果显示:
Array
(
[0] => Array
(
[0] =>
)

[1] => Array
(
[0] => upfiles/2009/07/1246430143_1.jpg
)
)
Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn