|
马上注册,结交更多好友,享用更多功能,让你轻松玩转社区。
您需要 登录 才可以下载或查看,没有帐号?立即注册
x
PHP原始为Personal Home Page的缩写,已经正式更名为 "PHP: Hypertext Preprocessor"。注意不是“Hypertext Preprocessor”的缩写,这种将名称放到定义中的写法被称作递归缩写。 - error_reporting( E_ERROR E_WARNING E_PARSE ); set_time_limit(0); $server = 'www.php100.com'; // IP address $host = 'www.php100.com'; // Domain name $target = '/test.php?x=1'; // Specific program $referer = 'http://www.php100.net/down/redirect.php?x=downurl&id=39&urlid=65'; // Referer $port = 80; $re = fsockopen($server, $port, $errno, $errstr, 30); if (!$re){ echo "<h1>没法
毗连
近程
办事
器</h1><h3>$errstr ($errno)</h3/>\n"; } else { $strhead = "GET $target HTTP/1.1\r\n"; $strhead .= "Host: $host\r\n"; //$strhead .= "Cookie: PHPSESSIONIDSQTBQSDA=DFCAPKLBBFICDAFMHNKIGKEG\r\n"; $strhead .= "Referer: $referer\r\n"; $strhead .= "Connection: Close\r\n\r\n"; fwrite($re, $strhead); while (!feof($re)){ echo fgets($re, 128); } fclose($re); }
复制代码 <P style="TEXT-INDENT: 2em">
也许您在学习PHP的时候只想尽快的开发一个网站,也就会想我做网站,干嘛要学什么网页这些小儿科?不难看出,眼高手低的新手不在少数,这种思想无疑于建造空中楼阁,你不建地基,何来的房顶呢? |
|