$fp = fsockopen('localhost',80,&$errno,&$errstr,5); if(!$fp) { echo "$errstr ($errno)\n"; } fputs($fp,"GET ./test.php\r\n"); //这个地方的路径一定要正确,刚开始的时候就弄错了 fclose($fp); 复制代码 test.php中放置需要的代码,这样就会异步执行了。