>백엔드 개발 >PHP 튜토리얼 >有关PHP正则,提取网页指定内容的问题。

有关PHP正则,提取网页指定内容的问题。

WBOY
WBOY원래의
2016-06-23 14:28:40955검색

php 正则

有关PHP正则,提取网页指定内容的问题。

源码:

E7%9B%92%E4%BD%BF%E7%94%A8%E6on%95%99%E7%A8%8B.mp4">

请问怎么把content=后面的链接地址提取出来?

回复讨论(解决方案)

求教!!

	$content = '<META name="httpfileurl" content=" http://stor.vdisk.cn/loadfile/C8/CE8%B5%84%E6%BA%90%E7%9B%92%E4%BD%BF%E7%94%A8%E6on%95%99%E7%A8%8B.mp4">';		$content = preg_match("|content=\"(.*)\"|",$content,$match);	echo($match[1]);

	$content = '<META name="httpfileurl" content=" http://stor.vdisk.cn/loadfile/C8/CE8%B5%84%E6%BA%90%E7%9B%92%E4%BD%BF%E7%94%A8%E6on%95%99%E7%A8%8B.mp4">';		$content = preg_match("|content=\"(.*)\"|",$content,$match);	echo($match[1]);


您好,非常感谢,这段代码可以用,我想知道,如果有多个content

我只想取"httpfileurl" content=" 后面的这个内容,该怎么办

	$content = '<META name="httpfileurl" content=" http://stor.vdisk.cn/loadfile/C8/CE8%B5%84%E6%BA%90%E7%9B%92%E4%BD%BF%E7%94%A8%E6on%95%99%E7%A8%8B.mp4">';		$content = preg_match("|content=\"(.*)\"|",$content,$match);	echo($match[1]);


代码是这样子的

 


	$content = '<META name="httpfileurl" content=" http://stor.vdisk.cn/loadfile/C8/CE8%B5%84%E6%BA%90%E7%9B%92%E4%BD%BF%E7%94%A8%E6on%95%99%E7%A8%8B.mp4">';		$content = preg_match("|content=\"(.*)\"|",$content,$match);	echo($match[1]);


代码是这样子的

 



$content = preg_match("|\"httpfileurl\"(\s+)?content=\"(.*)\"|",$content,$match);echo $match[2];

성명:
본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.