我有一个函数get_image_html()。 功能输出为:
<img src="http://example.com/my-image.jpg" alt="My Image Alt">
如何剥离所有代码以仅获取图片网址?
答案 0 :(得分:1)
您可以使用preg_match函数获取元素属性
$string = '<img src="http://example.com/my-image.jpg" alt="My Image Alt">';
$matches = array();
preg_match( '/src="([^"]*)"/i', $string, $matches ) ;
print_r( $matches[1] ) ;