1. 程式人生 > >PHP提取字串中視訊url地址函式,可直接使用

PHP提取字串中視訊url地址函式,可直接使用

PHP程式提取字串中的視訊url地址,可直接使用,使用方法:

get_content_video($contents);

/**
 * PHP提取字串中視訊url地址
 * @ Linyufan.com
 * @ 2018.9.11
 */
function get_content_video($str){
	preg_match_all("/<video[^<>]*src=[\"]([^\"]+)[\"][^<>]*>/im",$str,$matches);
	return $matches[1];
}

林羽凡小程式