<?php $socket = stream_socket_server("tcp://0.0.0.0:12345",$errno,$error); while (1){ $connfd = stream_socket_accept($socket); if ($connfd){ ...
確定! 回上一頁