Php |给定html字符串,如何提取src属性?

时间:2017-03-21 23:04:20

标签: php html

我想在php中获取html iframe字符串的src属性。

$iframe; /* This is my iframe variable, initialized above. (Just here for demonstration) */
/* I want to get the src attribute of this iframe html */

1 个答案:

答案 0 :(得分:1)

您可以使用正则表达式。

preg_match('/src="([^"]+)"/', $iframe, $match);
$url = $match[1];