- 已知网站的网址,用php获取网站的内容。
- 编写正则表达式。
- 用preg_match_all函数获取标题内容。
$url='http://www.m-ivi.com';
$content=file_get_contents($url);
$match='/<title>.*<\/title>/i';
$ru=preg_match_all($match,$content,$ma);
//获取
$title=$ma[0][0];
以上是以www.m-ivi.com为例子,返回值是“<title>深圳网站设计|网站建设|深圳网页设计|高端网站设计|深圳网站建设【艾维艾科技】</title>”。
可自行更换自己想要的网址。