我想通过 php 从 html 代码中获取第一个 img
我有这个代码
$text = '
<b>hello</b>
this is the first img
<img src="http://localhost/1.png" title="first img" />
other img
<img src="http://localhost/2.png" title="other" />
';
我想要一个新变量中的第一个源图像
http://localhost/1.png
谢谢