update page now

Voting

: min(three, six)?
(Example: nine)

The Note You're Voting On

grimdestripador at hotmail dot com
11 years ago
<?php
function array_flip_into_subarray($input){
$output = array();
foreach ($input as $key=>$values){
    foreach ($values as $value){
        $output[$value][] = $key;
    }
}
return $output;
}

<< Back to user notes page

To Top