3v4l.org

run code in 300+ 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.14
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.33, 8.2.0 - 8.2.29, 8.3.0 - 8.3.27
Fund 1

preferences:
57.12 ms | 408 KiB | 5 Q