|
program : Spr2[detect_httpheader] Author : uchinaboy E-mail : uchinaboy@163.com QQ : 16863798 Date : 2001-7-25 ****************************************************/ $host = "www.infojet.com.cn"; $port = "80"; $path = "/yuhu/"; $filename = "talk0.asp"; $datestream = "sdjahsdjkhaksjd"; $length = strlen($datestream); $header = "POST ${ path}$filename HTTP/1.1\n"; $header.= "HOST: $host\n"; $header.= "Content-Type: application/x-www-form-urlencoded\n"; $header.= "Content-Length: $length\n\n"; $header.= "$datestream"; function sock() { global $host, $port, $header; $fsocket = @fsockopen($host, $port, &$errno, &$errstr); if(!$fsocket) { echo "$errstr ($errno)\n"; }else { fputs($fsocket, $header); while(!feof($fsocket)) { $res = fread($fsocket, 128); echo $res; } } fclose($fsocket); } set_time_limit(0); sock(); ?> |
PHP怎么学习?PHP怎么入门?PHP在哪学?PHP怎么学才快?不用担心,这里为大家提供了PHP速学教程(入门到精通),有需要的小伙伴保存下载就能学习啦!
Copyright 2014-2025 https://www.php.cn/ All Rights Reserved | php.cn | 湘ICP备2023035733号