如何使用php才能获得图像src

时间:2017-07-10 19:58:51

标签: php

我有一个函数get_image_html()。 功能输出为:

<img src="http://example.com/my-image.jpg" alt="My Image Alt">

如何剥离所有代码以仅获取图片网址?

1 个答案:

答案 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] ) ;