3v4l.org

run code in 300+ PHP versions simultaneously
<?php $paths = array( 'one' => array( 'visited' => false, 'shortest_path' => INF, 'neighbors' => array( 'two' => array(1 => BUS), 'three' => array(5 => SUBWAY), 'fow' => array(10 => BUS), ) ), 'two' => array( 'visited' => false, 'shortest_path' => INF, 'neighbors' => array( 'one' => array(1 => BUS), ) ), 'three' => array( 'visited' => false, 'shortest_path' => INF, 'neighbors' => array( 'one' => array(5 => BUS), 'six' => array(20 => FOOT) ) ), 'fow' => array( 'visited' => false, 'shortest_path' => INF, 'neighbors' => array( 'one' => array(10 => BUS), 'five' => array(5 => BUS) ) ), 'five' => array( 'visited' => false, 'shortest_path' => INF, 'neighbors' => array( 'fow' => array(5 => BUS), 'six' => array(5 => FOOT) ) ), 'six' => array( 'visited' => false, 'shortest_path' => INF, 'neighbors' => array( 'three' => array(20 => BUS), 'five' => array(5 => FOOT) ) ) ); $array = array ( 0 => 'two ', 1 => 'three ', 2 => 'fow ', 3 => 'five ', 4 => 'six ', 5 => 'six ', ); // sort ДЛЯ СОРТИРОВКИ foreach ($array as $key => $name) { echo $name."\n"; if (count($paths[$name][neighbors]) >=2 ) { echo 123; foreach ($paths[$name][neighbors] as $neighbor) { if ($array[$key+1] == $neighbor) { echo $name; } } } }
Output for 8.0.0 - 8.0.30, 8.1.0 - 8.1.28, 8.2.0 - 8.2.18, 8.3.0 - 8.3.4, 8.3.6
Fatal error: Uncaught Error: Undefined constant "BUS" in /in/n6epa:8 Stack trace: #0 {main} thrown in /in/n6epa on line 8
Process exited with code 255.
Output for 8.3.5
Warning: PHP Startup: Unable to load dynamic library 'sodium.so' (tried: /usr/lib/php/8.3.5/modules/sodium.so (libsodium.so.23: cannot open shared object file: No such file or directory), /usr/lib/php/8.3.5/modules/sodium.so.so (/usr/lib/php/8.3.5/modules/sodium.so.so: cannot open shared object file: No such file or directory)) in Unknown on line 0 Fatal error: Uncaught Error: Undefined constant "BUS" in /in/n6epa:8 Stack trace: #0 {main} thrown in /in/n6epa on line 8
Process exited with code 255.
Output for 7.4.0 - 7.4.33
Warning: Use of undefined constant BUS - assumed 'BUS' (this will throw an Error in a future version of PHP) in /in/n6epa on line 8 Warning: Use of undefined constant SUBWAY - assumed 'SUBWAY' (this will throw an Error in a future version of PHP) in /in/n6epa on line 9 Warning: Use of undefined constant BUS - assumed 'BUS' (this will throw an Error in a future version of PHP) in /in/n6epa on line 10 Warning: Use of undefined constant BUS - assumed 'BUS' (this will throw an Error in a future version of PHP) in /in/n6epa on line 18 Warning: Use of undefined constant BUS - assumed 'BUS' (this will throw an Error in a future version of PHP) in /in/n6epa on line 26 Warning: Use of undefined constant FOOT - assumed 'FOOT' (this will throw an Error in a future version of PHP) in /in/n6epa on line 27 Warning: Use of undefined constant BUS - assumed 'BUS' (this will throw an Error in a future version of PHP) in /in/n6epa on line 35 Warning: Use of undefined constant BUS - assumed 'BUS' (this will throw an Error in a future version of PHP) in /in/n6epa on line 36 Warning: Use of undefined constant BUS - assumed 'BUS' (this will throw an Error in a future version of PHP) in /in/n6epa on line 44 Warning: Use of undefined constant FOOT - assumed 'FOOT' (this will throw an Error in a future version of PHP) in /in/n6epa on line 45 Warning: Use of undefined constant BUS - assumed 'BUS' (this will throw an Error in a future version of PHP) in /in/n6epa on line 53 Warning: Use of undefined constant FOOT - assumed 'FOOT' (this will throw an Error in a future version of PHP) in /in/n6epa on line 54 two Warning: Use of undefined constant neighbors - assumed 'neighbors' (this will throw an Error in a future version of PHP) in /in/n6epa on line 76 Notice: Undefined index: two in /in/n6epa on line 76 Notice: Trying to access array offset on value of type null in /in/n6epa on line 76 Warning: count(): Parameter must be an array or an object that implements Countable in /in/n6epa on line 76 three Warning: Use of undefined constant neighbors - assumed 'neighbors' (this will throw an Error in a future version of PHP) in /in/n6epa on line 76 Notice: Undefined index: three in /in/n6epa on line 76 Notice: Trying to access array offset on value of type null in /in/n6epa on line 76 Warning: count(): Parameter must be an array or an object that implements Countable in /in/n6epa on line 76 fow Warning: Use of undefined constant neighbors - assumed 'neighbors' (this will throw an Error in a future version of PHP) in /in/n6epa on line 76 Notice: Undefined index: fow in /in/n6epa on line 76 Notice: Trying to access array offset on value of type null in /in/n6epa on line 76 Warning: count(): Parameter must be an array or an object that implements Countable in /in/n6epa on line 76 five Warning: Use of undefined constant neighbors - assumed 'neighbors' (this will throw an Error in a future version of PHP) in /in/n6epa on line 76 Notice: Undefined index: five in /in/n6epa on line 76 Notice: Trying to access array offset on value of type null in /in/n6epa on line 76 Warning: count(): Parameter must be an array or an object that implements Countable in /in/n6epa on line 76 six Warning: Use of undefined constant neighbors - assumed 'neighbors' (this will throw an Error in a future version of PHP) in /in/n6epa on line 76 Notice: Undefined index: six in /in/n6epa on line 76 Notice: Trying to access array offset on value of type null in /in/n6epa on line 76 Warning: count(): Parameter must be an array or an object that implements Countable in /in/n6epa on line 76 six Warning: Use of undefined constant neighbors - assumed 'neighbors' (this will throw an Error in a future version of PHP) in /in/n6epa on line 76 Notice: Undefined index: six in /in/n6epa on line 76 Notice: Trying to access array offset on value of type null in /in/n6epa on line 76 Warning: count(): Parameter must be an array or an object that implements Countable in /in/n6epa on line 76
Output for 7.3.32 - 7.3.33
Warning: Use of undefined constant BUS - assumed 'BUS' (this will throw an Error in a future version of PHP) in /in/n6epa on line 8 Warning: Use of undefined constant SUBWAY - assumed 'SUBWAY' (this will throw an Error in a future version of PHP) in /in/n6epa on line 9 Warning: Use of undefined constant BUS - assumed 'BUS' (this will throw an Error in a future version of PHP) in /in/n6epa on line 10 Warning: Use of undefined constant BUS - assumed 'BUS' (this will throw an Error in a future version of PHP) in /in/n6epa on line 18 Warning: Use of undefined constant BUS - assumed 'BUS' (this will throw an Error in a future version of PHP) in /in/n6epa on line 26 Warning: Use of undefined constant FOOT - assumed 'FOOT' (this will throw an Error in a future version of PHP) in /in/n6epa on line 27 Warning: Use of undefined constant BUS - assumed 'BUS' (this will throw an Error in a future version of PHP) in /in/n6epa on line 35 Warning: Use of undefined constant BUS - assumed 'BUS' (this will throw an Error in a future version of PHP) in /in/n6epa on line 36 Warning: Use of undefined constant BUS - assumed 'BUS' (this will throw an Error in a future version of PHP) in /in/n6epa on line 44 Warning: Use of undefined constant FOOT - assumed 'FOOT' (this will throw an Error in a future version of PHP) in /in/n6epa on line 45 Warning: Use of undefined constant BUS - assumed 'BUS' (this will throw an Error in a future version of PHP) in /in/n6epa on line 53 Warning: Use of undefined constant FOOT - assumed 'FOOT' (this will throw an Error in a future version of PHP) in /in/n6epa on line 54 two Warning: Use of undefined constant neighbors - assumed 'neighbors' (this will throw an Error in a future version of PHP) in /in/n6epa on line 76 Warning: count(): Parameter must be an array or an object that implements Countable in /in/n6epa on line 76 three Warning: Use of undefined constant neighbors - assumed 'neighbors' (this will throw an Error in a future version of PHP) in /in/n6epa on line 76 Warning: count(): Parameter must be an array or an object that implements Countable in /in/n6epa on line 76 fow Warning: Use of undefined constant neighbors - assumed 'neighbors' (this will throw an Error in a future version of PHP) in /in/n6epa on line 76 Warning: count(): Parameter must be an array or an object that implements Countable in /in/n6epa on line 76 five Warning: Use of undefined constant neighbors - assumed 'neighbors' (this will throw an Error in a future version of PHP) in /in/n6epa on line 76 Warning: count(): Parameter must be an array or an object that implements Countable in /in/n6epa on line 76 six Warning: Use of undefined constant neighbors - assumed 'neighbors' (this will throw an Error in a future version of PHP) in /in/n6epa on line 76 Warning: count(): Parameter must be an array or an object that implements Countable in /in/n6epa on line 76 six Warning: Use of undefined constant neighbors - assumed 'neighbors' (this will throw an Error in a future version of PHP) in /in/n6epa on line 76 Warning: count(): Parameter must be an array or an object that implements Countable in /in/n6epa on line 76
Output for 7.2.0 - 7.2.33, 7.3.16 - 7.3.31
Warning: Use of undefined constant BUS - assumed 'BUS' (this will throw an Error in a future version of PHP) in /in/n6epa on line 8 Warning: Use of undefined constant SUBWAY - assumed 'SUBWAY' (this will throw an Error in a future version of PHP) in /in/n6epa on line 9 Warning: Use of undefined constant BUS - assumed 'BUS' (this will throw an Error in a future version of PHP) in /in/n6epa on line 10 Warning: Use of undefined constant BUS - assumed 'BUS' (this will throw an Error in a future version of PHP) in /in/n6epa on line 18 Warning: Use of undefined constant BUS - assumed 'BUS' (this will throw an Error in a future version of PHP) in /in/n6epa on line 26 Warning: Use of undefined constant FOOT - assumed 'FOOT' (this will throw an Error in a future version of PHP) in /in/n6epa on line 27 Warning: Use of undefined constant BUS - assumed 'BUS' (this will throw an Error in a future version of PHP) in /in/n6epa on line 35 Warning: Use of undefined constant BUS - assumed 'BUS' (this will throw an Error in a future version of PHP) in /in/n6epa on line 36 Warning: Use of undefined constant BUS - assumed 'BUS' (this will throw an Error in a future version of PHP) in /in/n6epa on line 44 Warning: Use of undefined constant FOOT - assumed 'FOOT' (this will throw an Error in a future version of PHP) in /in/n6epa on line 45 Warning: Use of undefined constant BUS - assumed 'BUS' (this will throw an Error in a future version of PHP) in /in/n6epa on line 53 Warning: Use of undefined constant FOOT - assumed 'FOOT' (this will throw an Error in a future version of PHP) in /in/n6epa on line 54 two Warning: Use of undefined constant neighbors - assumed 'neighbors' (this will throw an Error in a future version of PHP) in /in/n6epa on line 76 Notice: Undefined index: two in /in/n6epa on line 76 Warning: count(): Parameter must be an array or an object that implements Countable in /in/n6epa on line 76 three Warning: Use of undefined constant neighbors - assumed 'neighbors' (this will throw an Error in a future version of PHP) in /in/n6epa on line 76 Notice: Undefined index: three in /in/n6epa on line 76 Warning: count(): Parameter must be an array or an object that implements Countable in /in/n6epa on line 76 fow Warning: Use of undefined constant neighbors - assumed 'neighbors' (this will throw an Error in a future version of PHP) in /in/n6epa on line 76 Notice: Undefined index: fow in /in/n6epa on line 76 Warning: count(): Parameter must be an array or an object that implements Countable in /in/n6epa on line 76 five Warning: Use of undefined constant neighbors - assumed 'neighbors' (this will throw an Error in a future version of PHP) in /in/n6epa on line 76 Notice: Undefined index: five in /in/n6epa on line 76 Warning: count(): Parameter must be an array or an object that implements Countable in /in/n6epa on line 76 six Warning: Use of undefined constant neighbors - assumed 'neighbors' (this will throw an Error in a future version of PHP) in /in/n6epa on line 76 Notice: Undefined index: six in /in/n6epa on line 76 Warning: count(): Parameter must be an array or an object that implements Countable in /in/n6epa on line 76 six Warning: Use of undefined constant neighbors - assumed 'neighbors' (this will throw an Error in a future version of PHP) in /in/n6epa on line 76 Notice: Undefined index: six in /in/n6epa on line 76 Warning: count(): Parameter must be an array or an object that implements Countable in /in/n6epa on line 76
Output for 7.0.0 - 7.0.20, 7.1.0 - 7.1.20
Notice: Use of undefined constant BUS - assumed 'BUS' in /in/n6epa on line 8 Notice: Use of undefined constant SUBWAY - assumed 'SUBWAY' in /in/n6epa on line 9 Notice: Use of undefined constant BUS - assumed 'BUS' in /in/n6epa on line 10 Notice: Use of undefined constant BUS - assumed 'BUS' in /in/n6epa on line 18 Notice: Use of undefined constant BUS - assumed 'BUS' in /in/n6epa on line 26 Notice: Use of undefined constant FOOT - assumed 'FOOT' in /in/n6epa on line 27 Notice: Use of undefined constant BUS - assumed 'BUS' in /in/n6epa on line 35 Notice: Use of undefined constant BUS - assumed 'BUS' in /in/n6epa on line 36 Notice: Use of undefined constant BUS - assumed 'BUS' in /in/n6epa on line 44 Notice: Use of undefined constant FOOT - assumed 'FOOT' in /in/n6epa on line 45 Notice: Use of undefined constant BUS - assumed 'BUS' in /in/n6epa on line 53 Notice: Use of undefined constant FOOT - assumed 'FOOT' in /in/n6epa on line 54 two Notice: Use of undefined constant neighbors - assumed 'neighbors' in /in/n6epa on line 76 Notice: Undefined index: two in /in/n6epa on line 76 three Notice: Use of undefined constant neighbors - assumed 'neighbors' in /in/n6epa on line 76 Notice: Undefined index: three in /in/n6epa on line 76 fow Notice: Use of undefined constant neighbors - assumed 'neighbors' in /in/n6epa on line 76 Notice: Undefined index: fow in /in/n6epa on line 76 five Notice: Use of undefined constant neighbors - assumed 'neighbors' in /in/n6epa on line 76 Notice: Undefined index: five in /in/n6epa on line 76 six Notice: Use of undefined constant neighbors - assumed 'neighbors' in /in/n6epa on line 76 Notice: Undefined index: six in /in/n6epa on line 76 six Notice: Use of undefined constant neighbors - assumed 'neighbors' in /in/n6epa on line 76 Notice: Undefined index: six in /in/n6epa on line 76

preferences:
164.79 ms | 405 KiB | 172 Q