3v4l.org

run code in 300+ PHP versions simultaneously
<?php class TestFilterClass { function filter($in, $out) { while (true) { $bucket = stream_bucket_make_writeable($in); if (is_object($bucket)) { $bucket->data = sprintf('[%s] %s', __METHOD__, $bucket->data); stream_bucket_append($out, $bucket); } break; } return PSFS_PASS_ON; } } if (stream_filter_register('TestFilter', 'TestFilterClass')) { $handle = stream_filter_append(STDOUT, 'TestFilter'); if (is_resource($handle)) { fwrite(STDOUT, 'hello world' . PHP_EOL); // ok echo 'hello world' . PHP_EOL; // nope stream_filter_remove($handle); } }
Output for 8.2.0 - 8.2.18, 8.3.0 - 8.3.6
Deprecated: Creation of dynamic property TestFilterClass::$filtername is deprecated in /in/EWeCr on line 25 Deprecated: Creation of dynamic property TestFilterClass::$params is deprecated in /in/EWeCr on line 25 [TestFilterClass::filter] hello world hello world
Output for 5.2.3 - 5.2.17, 5.3.0 - 5.3.29, 5.4.0 - 5.4.45, 5.5.24 - 5.5.35, 5.6.8 - 5.6.28, 7.0.0 - 7.0.20, 7.1.0 - 7.1.33, 7.2.6 - 7.2.33, 7.3.0 - 7.3.33, 7.4.0 - 7.4.33, 8.0.0 - 8.0.30, 8.1.0 - 8.1.28
[TestFilterClass::filter] hello world hello world
Output for 5.0.0 - 5.0.5, 5.1.0 - 5.1.6, 5.2.0 - 5.2.2
Notice: Use of undefined constant STDOUT - assumed 'STDOUT' in /in/EWeCr on line 25 Warning: stream_filter_append() expects parameter 1 to be resource, string given in /in/EWeCr on line 25
Output for 4.4.5 - 4.4.9
Fatal error: Call to undefined function: stream_filter_register() in /in/EWeCr on line 23
Process exited with code 255.
Output for 4.3.2 - 4.3.11, 4.4.0 - 4.4.4
Fatal error: Call to undefined function: stream_filter_register() in /in/EWeCr on line 23
Process exited with code 255.
Output for 4.3.0 - 4.3.1
Fatal error: Call to undefined function: stream_filter_register() in /in/EWeCr on line 23

preferences:
259.43 ms | 401 KiB | 342 Q