mirror of
https://github.com/php/presentations.git
synced 2026-03-24 07:32:11 +01:00
8 lines
145 B
PHP
8 lines
145 B
PHP
<?php
|
|
$s = stream_socket_server('tcp://localhost:8080');
|
|
while ($client = stream_socket_accept($s)) {
|
|
$line = fgets($client);
|
|
echo $line;
|
|
}
|
|
?>
|