3v4l.org

run code in 300+ PHP versions simultaneously
<?php function isEmptyArray($item) { if (is_array($item)) { return array_filter($item, 'isEmptyArray'); } if (!empty($item) || $item === "0") { return true; } return false; } function removeEmptyArrays($array) { $filteredArray = array_filter($array, 'isEmptyArray'); return $filteredArray; } function removeEmptyParameter($parameter) { $newArray = array(); if(is_array($parameter)) { foreach($parameter as $key => $value) { if(is_array($value)) { $value = removeEmptyParameter($value); } if(!empty($value) || $value ==="0") { $newArray[$key] = $value; } } return $newArray; } else { if(!empty($parameter) || $parameter ==="0") { return $parameter; } } } function isMultiDimensional($array) { if(is_array($array)) { foreach ($array as $key=>$value){ if(is_array($value)){ return true; } } } return false; } $string = 'rest_call=create_acct_complete_m&acct[acct_row][country]=US'; $cat = 'admintools-api'; parse_str($string, $output); $method = $output['rest_call']; $options = array(); $apiLiveOptions = array(); foreach ($output AS $key => $value) { if (is_array($value)) { if (!empty($value[$key])) { $options[$key] = $value; $apiLiveOptions[$key] = $value; } else { $array = array(); $apiLiveArray = array(); foreach ($value as $k => $v) { if(!empty($v[$k])) { $array[] = $value[$k]; $apiLiveArray[] = $value[$k]; $options[$key] = $array; } else { $newArray = array_filter($v, 'isEmptyArray'); $apiLiveArray[$k] = $newArray; foreach($newArray as $row => $column) { if(is_array($column)) { foreach($column as $r=>$c) { if($cat=='admintools-api' || $method=='create_acct_complete_m') { if(isMultiDimensional($c) || (array_keys($c)[0] != $row.'s' ) ){ $c = removeEmptyParameter($c); $options[$key][$k][$row][$r]=$c; } else { $options[$key][$k][$row][$r]=array_values($c)[0]; } } else { $options[$row][$r]=$c; } } } else { if($cat=='core-api') { ($key == $row) ? ($options[$key][$k] = $column) : ($options[$key][$k][$row] = $column); } else { $column=removeEmptyParameter($column); $options[$row][$k] = $column; } } } } } $apiLiveOptions[$key] = $apiLiveArray; } } else { $options[$key] = $value; $apiLiveOptions[$key] = $value; } }; var_dump($options);
Output for 5.5.24 - 5.5.35, 5.6.8 - 5.6.28, 7.0.0 - 7.0.20, 7.1.0 - 7.1.10, 7.2.0 - 7.2.33, 7.3.16 - 7.3.33, 7.4.0 - 7.4.33, 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
array(2) { ["rest_call"]=> string(22) "create_acct_complete_m" ["country"]=> array(1) { ["acct_row"]=> string(2) "US" } }
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 array(2) { ["rest_call"]=> string(22) "create_acct_complete_m" ["country"]=> array(1) { ["acct_row"]=> string(2) "US" } }

preferences:
145.38 ms | 402 KiB | 181 Q