3v4l.org

run code in 300+ PHP versions simultaneously
<?php require 'server.inc'; function do_test($version, $connection) { $options = array( 'http' => array( 'protocol_version' => $version, ) ); if ($connection) { $options['http']['header'] = "Connection: $connection"; } $ctx = stream_context_create($options); $responses = ["data://text/plain,HTTP/$version 204 No Content\r\n\r\n"]; $pid = http_server('tcp://127.0.0.1:12342', $responses, $output); $fd = fopen('http://127.0.0.1:12342/', 'rb', false, $ctx); fseek($output, 0, SEEK_SET); echo stream_get_contents($output); http_server_kill($pid); } echo "HTTP/1.0, default behaviour:\n"; do_test('1.0', null); echo "HTTP/1.0, connection: close:\n"; do_test('1.0', 'close'); echo "HTTP/1.0, connection: keep-alive:\n"; do_test('1.0', 'keep-alive'); echo "HTTP/1.1, default behaviour:\n"; do_test('1.1', null); echo "HTTP/1.1, connection: close:\n"; do_test('1.1', 'close'); echo "HTTP/1.1, connection: keep-alive:\n"; do_test('1.1', 'keep-alive'); ?>
Output for git.master, git.master_jit, rfc.property-hooks
Warning: require(): open_basedir restriction in effect. File(server.inc) is not within the allowed path(s): (/tmp:/in:/etc) in /in/eXDHL on line 2 Warning: require(server.inc): Failed to open stream: Operation not permitted in /in/eXDHL on line 2 Fatal error: Uncaught Error: Failed opening required 'server.inc' (include_path='.:') in /in/eXDHL:2 Stack trace: #0 {main} thrown in /in/eXDHL on line 2
Process exited with code 255.

This tab shows result from various feature-branches currently under review by the php developers. Contact me to have additional branches featured.

Active branches

Archived branches

Once feature-branches are merged or declined, they are no longer available. Their functionality (when merged) can be viewed from the main output page


preferences:
52.12 ms | 401 KiB | 8 Q