PHP 8.5.0 Alpha 4 available for testing

Voting

: min(eight, four)?
(Example: nine)

The Note You're Voting On

timspeelman at live dot nl
13 years ago
The cleanest way to rearrange the $_FILES

<?php
function rearrange( $arr ){
foreach(
$arr as $key => $all ){
foreach(
$all as $i => $val ){
$new[$i][$key] = $val;
}
}
return
$new;
}
?>

<< Back to user notes page

To Top