服務器
<?php
// Server
// 設置錯誤處理
error_reporting (E_ALL);
// 設置運行時間
set_time_limit (0);
// 起用緩沖
ob_implicit_flush ();
$ip = "127.0.0.1"; // IP地址
$port = 1000; // 端口號
$socket = socket_create (AF_INET, SOCK_STREAM, SOL_TCP); // 創建一個SOCKET
if ($socket)
echo "socket_create() successed!\n";
else
echo "socket_create() failed:".socket_strerror ($socket)."\n";
$bind = socket_bind ($socket, $ip, $port); // 綁定一個SOCKET
if ($bind)