PHP Socket 編程
來源:互聯網
上載者:User
下面是相應的代碼:
PHP 代碼:
複製代碼 代碼如下:<?
// 設定一些基本的變數
$host = "192.168.1.99";
$port = 1234;
// 設定逾時時間
set_time_limit(0);
// 建立一個Socket
$socket = socket_create(AF_INET, SOCK_STREAM, 0) or die("Could not create
socket\n");
//綁定Socket到連接埠
$result = socket_bind($socket, $host, $port) or die("Could not bind to
socket\n");
// 開始監聽連結
$result = socket_listen($socket, 3) or die("Could not set up socket
listener\n");
// accept incoming connections
// 另一個Socket來處理通訊
$spawn = socket_accept($socket) or die("Could not accept incoming
connection\n");
// 獲得用戶端的輸入
$input = socket_read($spawn, 1024) or die("Could not read input\n");
// 清空輸入字串
$input = trim($input);
//處理用戶端輸入並返回結果
$output = strrev($input) . "\n";
socket_write($spawn, $output, strlen ($output)) or die("Could not write
output\n");
// 關閉sockets
socket_close($spawn);
socket_close($socket);
?>