3v4l.org

run code in 300+ PHP versions simultaneously
<?php $csv = <<< CSV "LOADERS", "S130", "Above & 524611001, 524711001 & Above", "MAINTENANCE ITEMS", "SCHEDULED MAINTENANCE ITEMS (500 HOUR)" "", "", "Above & 524611001, 524711001 & Above", "MAINTENANCE ITEMS", "SCHEDULED MAINTENANCE ITEMS (1000 HOUR)" "", "S140", "Above & 524611001, 524711001 & Above", "MAIN FRAME", "OPERATOR CAB" CSV; foreach(preg_split("/(\r?\n)/", $csv) as $line) { list($column1, $column2, $column3, $column4) = explode('", "', $line); //$column1 = preg_replace('/^"/', '', $column1); //$column4 = preg_replace('/\"(?<!\\")/', '', $column4); //foreach(explode(', ', $column3) as $column3_part) { // $temp_array[$column3_part][] = $column4; //} $big_array[$column1][$column2] = $temp_array; } echo '<pre>' . print_r($big_array, 1) . '</pre><hr />'; $counter = 50; foreach($big_array as $key1 => $level1) { foreach($level1 as $key2 => $level2) { foreach($level2 as $key3 => $level4) { foreach($level4 as $level5) { echo '<pre>' . print_r('INSERT INTO DATABASE: ' . $counter . ', ' . $key1 . ', ' . $key2 . ', ' . $key3 . ', ' . $level5, 1) . '</pre>'; $counter++; } } } }
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: Undefined variable $temp_array in /in/MDb8j on line 20 Warning: Undefined variable $temp_array in /in/MDb8j on line 20 Warning: Undefined variable $temp_array in /in/MDb8j on line 20 <pre>Array ( ["LOADERS] => Array ( [S130] => ) ["] => Array ( [] => [S140] => ) ) </pre><hr /> Warning: foreach() argument must be of type array|object, null given in /in/MDb8j on line 28 Warning: foreach() argument must be of type array|object, null given in /in/MDb8j on line 28 Warning: foreach() argument must be of type array|object, null given in /in/MDb8j on line 28
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: Undefined variable $temp_array in /in/MDb8j on line 20 Warning: Undefined variable $temp_array in /in/MDb8j on line 20 Warning: Undefined variable $temp_array in /in/MDb8j on line 20 <pre>Array ( ["LOADERS] => Array ( [S130] => ) ["] => Array ( [] => [S140] => ) ) </pre><hr /> Warning: foreach() argument must be of type array|object, null given in /in/MDb8j on line 28 Warning: foreach() argument must be of type array|object, null given in /in/MDb8j on line 28 Warning: foreach() argument must be of type array|object, null given in /in/MDb8j on line 28
Output for 5.6.0 - 5.6.40, 7.0.0 - 7.0.33, 7.1.0 - 7.1.33, 7.2.0 - 7.2.33, 7.3.0 - 7.3.31, 7.4.0 - 7.4.33
Notice: Undefined variable: temp_array in /in/MDb8j on line 20 Notice: Undefined variable: temp_array in /in/MDb8j on line 20 Notice: Undefined variable: temp_array in /in/MDb8j on line 20 <pre>Array ( ["LOADERS] => Array ( [S130] => ) ["] => Array ( [] => [S140] => ) ) </pre><hr /> Warning: Invalid argument supplied for foreach() in /in/MDb8j on line 28 Warning: Invalid argument supplied for foreach() in /in/MDb8j on line 28 Warning: Invalid argument supplied for foreach() in /in/MDb8j on line 28
Output for 7.3.32 - 7.3.33
<pre>Array ( ["LOADERS] => Array ( [S130] => ) ["] => Array ( [] => [S140] => ) ) </pre><hr /> Warning: Invalid argument supplied for foreach() in /in/MDb8j on line 28 Warning: Invalid argument supplied for foreach() in /in/MDb8j on line 28 Warning: Invalid argument supplied for foreach() in /in/MDb8j on line 28

preferences:
283.11 ms | 402 KiB | 291 Q