1

我正在编写一个脚本来检索帖子中的第一个图像链接

$content = [center]Hello World, this is my house: [img]myhouse.png[/img] blah blah blah blah [/center] This is another house [img]anotherhouse.png[/img] , blah blah blah

我只想返回“myhouse.png”并将其保存到变量中也img应该不区分大小写,这意味着它可以工作[img]text-here[/img][IMG]text-here[/IMG]

4

2 回答 2

1

这将返回第一张图片:

$content = '[center]Hello World, this is my house: [img]myhouse.png[/img] blah blah blah blah [/center] This is another house [img]anotherhouse.png[/img] , blah blah blah';

preg_match('#\[img\]\s*(?P<png>.*?)\s*\[/img\]#i', $content, $m);
echo $m['png']; // myhouse.png
于 2013-04-19T01:32:26.580 回答
1

这是一个正则表达式:

$content = '[center]Hello World, this is my house: [img]myhouse.png[/img] blah blah blah blah [/center] This is another house [img]anotherhouse.png[/img] , blah blah blah';

$pattern = '/\[img\](.*)\[\/img\]/U'; // <-- the U means ungreedy

preg_match_all($pattern, $content, $matches);
var_dump($matches[1]);

解释:

正则表达式匹配一对[img] ... [/img]标签之间的所有内容。为了确保它不会匹配第一个[img]和最后一个 [/img] 标记之间的所有文本,我使用了ungreedy修饰符。

了解有关 PHP 正则表达式语法的更多信息。

于 2013-04-19T01:32:40.910 回答