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, 8.5.0
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 8.4.15
/bin/php-8.4.15: /usr/lib/libm.so.6: version `GLIBC_2.38' not found (required by /bin/php-8.4.15) /bin/php-8.4.15: /usr/lib/libm.so.6: version `GLIBC_2.35' not found (required by /bin/php-8.4.15) /bin/php-8.4.15: /usr/lib/libc.so.6: version `GLIBC_2.34' not found (required by /bin/php-8.4.15) /bin/php-8.4.15: /usr/lib/libc.so.6: version `GLIBC_2.38' not found (required by /bin/php-8.4.15)
Process exited with code 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.28
Fund 1

preferences:
167.21 ms | 410 KiB | 5 Q