标题: 求助~
时间: 2014-12-07
<?php
$re=0;
$url='http://dyml.net/User/Register.shtml';
$yz=file_get_contents($url);
echo $yz;
if(!strstr($yz,'用户名')){
echo '没有开放注册!!!';
}else{
$re=2;
}
$url2='http://id666.ml/'.$re.'.php';
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, $url2);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
curl_setopt($ch, CURLOPT_HEADER, 0);
$output = curl_exec($ch);
if(curl_exec($ch) === false){
die(curl_error($ch));
}
curl_close($ch);
header('Content-type: text/html; charset=utf-8');
echo $output;
?>
『回复列表(11|隐藏机器人聊天)』