Home >php教程 >PHP源码 >自己用的备案查询接口开放

自己用的备案查询接口开放

PHP中文网
PHP中文网Original
2016-05-25 17:09:241325browse


function checkICP($url = '', $type = '') {
	$url = trim($url);
	if(empty($url)) {
		return;
	}
	$htmltext = file_get_contents('http://api.befen.net/icp/'.$url);
	if(empty($htmltext)) {
		return;
	}
	if($type == 'all') {
		return $htmltext;
	} else {
		$icparr = explode(',', $htmltext);
		return $icparr[2];
	}
}

                   

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn