3v4l.org

run code in 300+ PHP versions simultaneously
<?php $superheroes = array( "spider-man" => array( "name" => "Peter Parker", "email" => "peterparker@mail.com", ), "super-man" => array( "name" => "Clark Kent", "email" => "clarkkent@mail.com", ), "iron-man" => array( "name" => "Harry Potter", "email" => "harrypotter@mail.com", ) ); //print_r($superheroes); function checkArray($array) { forEach($array as $index => $item) { $dimensionPath = $array . $index; if(is_Array($item)) { echo "========== \n"; //$dimensionPath = $array . $index; echo "YES-" . $dimensionPath . ": " . $item . "\n"; checkArray($item); } else { echo "NO-" . $dimensionPath . ": " . $item . "\n"; } } } checkArray($superheroes);
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
Warning: Array to string conversion in /in/UBuU1 on line 21 ========== Warning: Array to string conversion in /in/UBuU1 on line 25 YES-Arrayspider-man: Array Warning: Array to string conversion in /in/UBuU1 on line 21 NO-Arrayname: Peter Parker Warning: Array to string conversion in /in/UBuU1 on line 21 NO-Arrayemail: peterparker@mail.com Warning: Array to string conversion in /in/UBuU1 on line 21 ========== Warning: Array to string conversion in /in/UBuU1 on line 25 YES-Arraysuper-man: Array Warning: Array to string conversion in /in/UBuU1 on line 21 NO-Arrayname: Clark Kent Warning: Array to string conversion in /in/UBuU1 on line 21 NO-Arrayemail: clarkkent@mail.com Warning: Array to string conversion in /in/UBuU1 on line 21 ========== Warning: Array to string conversion in /in/UBuU1 on line 25 YES-Arrayiron-man: Array Warning: Array to string conversion in /in/UBuU1 on line 21 NO-Arrayname: Harry Potter Warning: Array to string conversion in /in/UBuU1 on line 21 NO-Arrayemail: harrypotter@mail.com
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 Warning: Array to string conversion in /in/UBuU1 on line 21 ========== Warning: Array to string conversion in /in/UBuU1 on line 25 YES-Arrayspider-man: Array Warning: Array to string conversion in /in/UBuU1 on line 21 NO-Arrayname: Peter Parker Warning: Array to string conversion in /in/UBuU1 on line 21 NO-Arrayemail: peterparker@mail.com Warning: Array to string conversion in /in/UBuU1 on line 21 ========== Warning: Array to string conversion in /in/UBuU1 on line 25 YES-Arraysuper-man: Array Warning: Array to string conversion in /in/UBuU1 on line 21 NO-Arrayname: Clark Kent Warning: Array to string conversion in /in/UBuU1 on line 21 NO-Arrayemail: clarkkent@mail.com Warning: Array to string conversion in /in/UBuU1 on line 21 ========== Warning: Array to string conversion in /in/UBuU1 on line 25 YES-Arrayiron-man: Array Warning: Array to string conversion in /in/UBuU1 on line 21 NO-Arrayname: Harry Potter Warning: Array to string conversion in /in/UBuU1 on line 21 NO-Arrayemail: harrypotter@mail.com
Output for 5.5.24 - 5.5.35, 5.6.8 - 5.6.28, 7.0.0 - 7.0.20, 7.1.0 - 7.1.20, 7.2.0 - 7.2.33, 7.3.16 - 7.3.31, 7.4.0 - 7.4.33
Notice: Array to string conversion in /in/UBuU1 on line 21 ========== Notice: Array to string conversion in /in/UBuU1 on line 25 YES-Arrayspider-man: Array Notice: Array to string conversion in /in/UBuU1 on line 21 NO-Arrayname: Peter Parker Notice: Array to string conversion in /in/UBuU1 on line 21 NO-Arrayemail: peterparker@mail.com Notice: Array to string conversion in /in/UBuU1 on line 21 ========== Notice: Array to string conversion in /in/UBuU1 on line 25 YES-Arraysuper-man: Array Notice: Array to string conversion in /in/UBuU1 on line 21 NO-Arrayname: Clark Kent Notice: Array to string conversion in /in/UBuU1 on line 21 NO-Arrayemail: clarkkent@mail.com Notice: Array to string conversion in /in/UBuU1 on line 21 ========== Notice: Array to string conversion in /in/UBuU1 on line 25 YES-Arrayiron-man: Array Notice: Array to string conversion in /in/UBuU1 on line 21 NO-Arrayname: Harry Potter Notice: Array to string conversion in /in/UBuU1 on line 21 NO-Arrayemail: harrypotter@mail.com
Output for 7.3.32 - 7.3.33
========== YES-Arrayspider-man: Array NO-Arrayname: Peter Parker NO-Arrayemail: peterparker@mail.com ========== YES-Arraysuper-man: Array NO-Arrayname: Clark Kent NO-Arrayemail: clarkkent@mail.com ========== YES-Arrayiron-man: Array NO-Arrayname: Harry Potter NO-Arrayemail: harrypotter@mail.com

preferences:
146.28 ms | 401 KiB | 183 Q