mirror of
https://github.com/php/presentations.git
synced 2026-04-27 09:18:15 +02: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;
|
|
}
|
|
?>
|