3v4l.org

run code in 300+ PHP versions simultaneously
<?php error_reporting(E_ALL); function php_const_dir() { $posix = ('/' == DIRECTORY_SEPARATOR) ? true : false; $path = substr(__FILE__, 0, strrpos(__FILE__, DIRECTORY_SEPARATOR)); return !$posix ? str_replace('\\', '/', rtrim($path, '/\\')) : rtrim($path, '/'); } function php_const_eol() { switch (strtoupper(substr(PHP_OS, 0, 3))) { // Windows case 'WIN': define('PHP_EOL', "\r\n"); break; // Mac case 'DAR': define('PHP_EOL', "\r"); break; // Unix default: define('PHP_EOL', "\n"); } } (@__DIR__ == '__DIR__') && define('__DIR__', php_const_dir()); (@PHP_EOL == 'PHP_EOL') && define('PHP_EOL', php_const_eol()); var_dump(__DIR__); var_dump(PHP_EOL);
Output for git.master, git.master_jit, rfc.property-hooks
string(3) "/in" string(1) " "

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:
44.67 ms | 401 KiB | 8 Q