1
如何從使用PHP的telnet會話斷開連接?使用下面的代碼我讀取了telnet輸出。但是如果數據無法在$輸出變量中接收,我想斷開與telnet會話的連接在3秒內。我如何做到這一點。請看我的代碼如下:如何使用PHP超時telnet會話
$fp = fsockopen("localhost", 80, $errno, $errstr, 30);
if (!$fp) {
echo "$errstr ($errno)<br />\n";
} else {
$out = "GET/HTTP/1.1\r\n";
$out .= "Connection: Close\r\n\r\n";
fwrite($fp, $out);
$output=fread($fp,128);//Here we read the output value from socket
fclose($fp);
echo $output;
}
thanks..im system.Couldü請指南我如何創建循環,並設置時間差異??請指導和幫助.. – riad 2011-05-26 07:22:34
謝謝它的工作.... – riad 2011-05-26 08:13:19