第一次在这里发帖,我真的希望你能提供帮助。
我使用存储大量 html 的数据库,现在我只需要图像标签的 src 部分。
我已经找到了一个线程,但我只是不这样做。
我的代码:
原始字符串:
<p><img alt=\"\" src=\"http://domain.nl/cms/ckeditor/filemanager/userfiles/background.png\" style=\"width: 80px; height: 160px;\" /></p>
我如何开始:
$image = strip_tags($row['information'], '<img>');
echo stripslashes($image);
这将返回:
<img alt="" src="http://domain.nl/cms/ckeditor/filemanager/userfiles/background.png" style="width: 80px; height: 160px;" />
下一步:提取 src 部分:
preg_match('/< *img[^>]*src *= *["\']?([^"\']*)/i', $image, $matches);
echo $matches ;
最后一个回声返回:
Array
出了什么问题?
提前感谢您的回答。