Home > Backend Development > PHP Tutorial > PHP提取字符串中的图片地址[正则表达式]_PHP

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

WBOY
Release: 2016-06-01 12:13:56
Original
754 people have browsed it

正则表达式

复制代码 代码如下:
$str='

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

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

[1] => Array
(
[0] => upfiles/2009/07/1246430143_1.jpg
)
)
Related labels:
source:php.cn
Statement of this Website
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
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template