3v4l.org

run code in 500+ PHP versions simultaneously
<?php $lines = <<<EOF fund,name,investment,region,sector,status,description,acquisition_date,size,address_line_1,address_line_2,city,county,postcode,longitude,latitude,featured,external_link "Fund 1","Property Name","Investment Name","London","Office","Published","","","","","","London","","","","","","" EOF; $array = array_map('str_getcsv', explode(PHP_EOL, $lines)); array_walk($array, function(&$a) use ($array) { $a = array_combine($array[0], $a); }); array_shift($array); foreach ($array as $element) { echo $element['fund'], "\n"; }
Output for 8.4.1 - 8.4.18, 8.5.0 - 8.5.3
Deprecated: str_getcsv(): the $escape parameter must be provided as its default value will change in /in/ru4e9 on line 8 Deprecated: str_getcsv(): the $escape parameter must be provided as its default value will change in /in/ru4e9 on line 8 Fund 1
Output for 7.1.25, 7.2.0 - 7.2.33, 7.3.0 - 7.3.33, 7.4.0 - 7.4.33, 8.0.0 - 8.0.30, 8.1.0 - 8.1.34, 8.2.0 - 8.2.30, 8.3.0 - 8.3.30
Fund 1

preferences:
117.07 ms | 1378 KiB | 4 Q