我想在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 */
答案 0 :(得分:1)
您可以使用正则表达式。
preg_match('/src="([^"]+)"/', $iframe, $match);
$url = $match[1];