3 lines
94 B
PHP
3 lines
94 B
PHP
$socket = fsockopen('localhost', 256);
|
|
fputs($socket, 'hello socket world');
|
|
fclose($socket);
|