3v4l.org

run code in 300+ PHP versions simultaneously
<?php $upload = array(array( 'errors' => array(), 'filename' => '/some/path/to/a/file.jpg'), array( 'errors' => array(), 'filename' => '/yet/another/path.jpg')); var_dump($upload); foreach ($upload as $x) echo $x['filename'],"<br>"; echo $upload[0]['filenadme'];
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.6
array(2) { [0]=> array(2) { ["errors"]=> array(0) { } ["filename"]=> string(24) "/some/path/to/a/file.jpg" } [1]=> array(2) { ["errors"]=> array(0) { } ["filename"]=> string(21) "/yet/another/path.jpg" } } /some/path/to/a/file.jpg<br>/yet/another/path.jpg<br> Warning: Undefined array key "filenadme" in /in/HoGa9 on line 13
Output for 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.20, 7.2.0 - 7.2.33, 7.3.12 - 7.3.31, 7.4.0 - 7.4.33
array(2) { [0]=> array(2) { ["errors"]=> array(0) { } ["filename"]=> string(24) "/some/path/to/a/file.jpg" } [1]=> array(2) { ["errors"]=> array(0) { } ["filename"]=> string(21) "/yet/another/path.jpg" } } /some/path/to/a/file.jpg<br>/yet/another/path.jpg<br> Notice: Undefined index: filenadme in /in/HoGa9 on line 13
Output for 7.3.32 - 7.3.33
array(2) { [0]=> array(2) { ["errors"]=> array(0) { } ["filename"]=> string(24) "/some/path/to/a/file.jpg" } [1]=> array(2) { ["errors"]=> array(0) { } ["filename"]=> string(21) "/yet/another/path.jpg" } } /some/path/to/a/file.jpg<br>/yet/another/path.jpg<br>
Output for 4.3.0 - 4.3.11, 4.4.0 - 4.4.9, 5.0.0 - 5.0.5, 5.1.0 - 5.1.6, 5.2.0 - 5.2.17
array(2) { [0]=> array(2) { ["errors"]=> array(0) { } ["filename"]=> string(24) "/some/path/to/a/file.jpg" } [1]=> array(2) { ["errors"]=> array(0) { } ["filename"]=> string(21) "/yet/another/path.jpg" } } /some/path/to/a/file.jpg<br>/yet/another/path.jpg<br> Notice: Undefined index: filenadme in /in/HoGa9 on line 13

preferences:
230.26 ms | 403 KiB | 313 Q