3v4l.org

run code in 300+ PHP versions simultaneously
<?php function foo() { global $color; include 'vars.php'; echo "A $color $fruit"; } /* vars.php is in the scope of foo() so * * $fruit is NOT available outside of this * * scope. $color is because we declared it * * as global. */ foo(); // A green apple echo "A $color $fruit"; // A green ?>
Output for 8.0.0 - 8.0.12, 8.0.14 - 8.0.30, 8.1.0 - 8.1.28, 8.2.0 - 8.2.18, 8.3.0 - 8.3.6
Warning: include(): open_basedir restriction in effect. File(vars.php) is not within the allowed path(s): (/tmp:/in:/etc) in /in/4KvaP on line 7 Warning: include(vars.php): Failed to open stream: Operation not permitted in /in/4KvaP on line 7 Warning: include(): Failed opening 'vars.php' for inclusion (include_path='.:') in /in/4KvaP on line 7 Warning: Undefined variable $fruit in /in/4KvaP on line 9 A Warning: Undefined variable $fruit in /in/4KvaP on line 18 A
Output for 8.0.13
Warning: include(vars.php): Failed to open stream: No such file or directory in /in/4KvaP on line 7 Warning: include(): Failed opening 'vars.php' for inclusion (include_path='.:') in /in/4KvaP on line 7 Warning: Undefined variable $fruit in /in/4KvaP on line 9 A Warning: Undefined variable $fruit in /in/4KvaP on line 18 A
Output for 5.3.0 - 5.3.29, 5.4.0 - 5.4.45, 5.5.0 - 5.5.38, 5.6.0 - 5.6.30, 7.0.0 - 7.0.20, 7.1.0 - 7.1.10, 7.4.33
Warning: include(vars.php): failed to open stream: No such file or directory in /in/4KvaP on line 7 Warning: include(): Failed opening 'vars.php' for inclusion (include_path='.:') in /in/4KvaP on line 7 Notice: Undefined variable: fruit in /in/4KvaP on line 9 A Notice: Undefined variable: fruit in /in/4KvaP on line 18 A
Output for 7.1.25, 7.2.0 - 7.2.33, 7.3.0 - 7.3.31, 7.4.0 - 7.4.32
Warning: include(): open_basedir restriction in effect. File(vars.php) is not within the allowed path(s): (/tmp:/in:/etc) in /in/4KvaP on line 7 Warning: include(vars.php): failed to open stream: Operation not permitted in /in/4KvaP on line 7 Warning: include(): Failed opening 'vars.php' for inclusion (include_path='.:') in /in/4KvaP on line 7 Notice: Undefined variable: fruit in /in/4KvaP on line 9 A Notice: Undefined variable: fruit in /in/4KvaP on line 18 A
Output for 7.3.32 - 7.3.33
Warning: include(vars.php): failed to open stream: No such file or directory in /in/4KvaP on line 7 Warning: include(): Failed opening 'vars.php' for inclusion (include_path='.:') in /in/4KvaP on line 7 A A
Output for 7.1.20
Warning: include(): open_basedir restriction in effect. File(vars.php) is not within the allowed path(s): (/tmp:/in) in /in/4KvaP on line 7 Warning: include(vars.php): failed to open stream: Operation not permitted in /in/4KvaP on line 7 Warning: include(): Failed opening 'vars.php' for inclusion (include_path='.:') in /in/4KvaP on line 7 Notice: Undefined variable: fruit in /in/4KvaP on line 9 A Notice: Undefined variable: fruit in /in/4KvaP on line 18 A

preferences:
256.55 ms | 402 KiB | 335 Q