本文目录一览:
php截取字符串中指定的标签的值并替换
利用php自带的函数preg_match就可以了。
在php中preg_match()函数是用来执行正则表达式的一个常用的函数
// 从 URL 中取得主机名,并替换
preg_match("/^(http://)?([^/]+)/i", "http://www.***.net/index.html", $matches);
$host = $matches[2];
// 从主机名中取得后面两段
preg_match("/[^./]+.[^./]+$/", 'test', $matches);
echo "domain name is: {$matches[0]}n";
?
本例将输出:
domain name is: test
PHP如何抓取指定的网页,并且替换指定的内容
用php的
curl
preg_match_all()
这两个就可以解决你的问题。具体最好还是自己查查用法。
PHP替换远程采集
$html=file_get_contents($url),这个的意思是去访问$url这个页面,返回来的就是这个页面的HTML源代码,也就是一个字符串.你想替换里面的东西那就首先得分析替换内容的结构规则,如你要替换Title,那你可以这样写
$content = file_get_contents('');
$content = preg_replace('/title(.)+\/title/','title新标题/title',$content);
echo $content;
如何用php采集新浪财经
给您提供一下思想,希望能够帮您解决。fopen("tmp.htm","r"); //只读打开
$str=str_replace("{title}",$title,$str);
$str=str_replace("{content}",$content,$str);//替换内容
fclose($fp);简单的采集常用函数。,您也可以用强大的snoopy采集类。彩集新浪财经,需要查看/分析源代码,然后用正则表达式,匹配要采集的代码然后重新组织数据结构。