3v4l.org

run code in 300+ PHP versions simultaneously
<?php if (strnatcmp(phpversion(),'5.4.7') >= 0) { $address="127.0.0.1"; $port=9880; echo "I am here"; set_time_limit (0); echo "1"; if(false==($socket= socket_create(AF_INET,SOCK_STREAM, SOL_TCP))) { echo "2"; echo "could not create socket"; } echo "3"; socket_bind($socket, $address, $port) or die ("could not bind socket"); echo "4"; socket_listen($socket); echo "5"; if(($client=socket_accept($socket))) echo "6"; echo "client is here"; sleep(60); socket_close($socket); } ?>
Output for 7.0.0 - 7.0.33, 7.1.0 - 7.1.33, 7.2.0 - 7.2.26, 7.3.0 - 7.3.13, 7.4.0 - 7.4.1
I am here1 Fatal error: Uncaught Error: Call to undefined function socket_create() in /in/cGkRe:9 Stack trace: #0 {main} thrown in /in/cGkRe on line 9
Process exited with code 255.
Output for 5.4.7 - 5.4.45, 5.5.0 - 5.5.38, 5.6.0 - 5.6.40
I am here1 Fatal error: Call to undefined function socket_create() in /in/cGkRe on line 9
Process exited with code 255.
Output for 5.3.0 - 5.3.29, 5.4.0 - 5.4.6

preferences:
214.6 ms | 402 KiB | 272 Q