3v4l.org

run code in 300+ PHP versions simultaneously
<?php if (strnatcmp(phpversion(),'5.4.7') >= 0) { $address="127.0.0.1"; $port=9883; echo "I am here"; set_time_limit (10); 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"; } echo "7"; sleep(60); echo "8"; socket_close($socket); echo "9"; } ?>
Output for 7.0.0 - 7.0.20, 7.1.0 - 7.1.33, 7.2.0 - 7.2.25, 7.3.0 - 7.3.12, 7.4.0
I am here1 Fatal error: Uncaught Error: Call to undefined function socket_create() in /in/joTXt:9 Stack trace: #0 {main} thrown in /in/joTXt on line 9
Process exited with code 255.
Output for 5.4.7 - 5.4.45, 5.5.0 - 5.5.35, 5.6.0 - 5.6.28
I am here1 Fatal error: Call to undefined function socket_create() in /in/joTXt on line 9
Process exited with code 255.
Output for 4.3.0 - 4.3.11, 4.4.0 - 4.4.9, 5.0.0 - 5.0.5, 5.1.0 - 5.1.6, 5.2.0 - 5.2.17, 5.3.0 - 5.3.29, 5.4.0 - 5.4.6

preferences:
220.47 ms | 403 KiB | 251 Q