>  기사  >  php教程  >  自动更新google的hosts

自动更新google的hosts

WBOY
WBOY원래의
2016-06-06 19:35:451457검색

加个开机运行的任务计划,完美。。 无 ?php$hostsFile = "C:/Windows/System32/drivers/etc/hosts";$RegExp = '/#google hosts [0-9]+ by 360kb.com[\s\S]+#google hosts [0-9]+ end/';$html = strip_tags(file_get_contents('http://www.360kb.com/kb/2_122.

加个开机运行的任务计划,完美。。
<?php
$hostsFile = "C:/Windows/System32/drivers/etc/hosts";
$RegExp = '/#google hosts [0-9]+ by 360kb.com[\s\S]+#google hosts [0-9]+ end/';

$html = strip_tags(file_get_contents('http://www.360kb.com/kb/2_122.html'));

preg_match($RegExp, $html, $matchs);
$googleHosts = str_replace(' ', ' ', $matchs[0]);
//echo $googleHosts;

$hosts = file_get_contents($hostsFile);

if(preg_match($RegExp, $hosts)){
	$hosts = preg_replace($RegExp, $googleHosts, $hosts);
}else{
	$hosts .= "\r\n\r\n".$googleHosts."\r\n\r\n";
}

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