The function array_combine does not exist in PHP4, so the library doesn't
work with this PHP version.
I've replaced this function by the following:
function array_comb ($array1, $array2) {
$out = array();
foreach ($array1 as $key => $value) {
$out[$value] = $array2[$key];
}
return $out;
}
And now it's work perfectly.
Thanks for sharing this library, it's very useful and easy to use. :)
Original issue reported on code.google.com by nunchaku...@gmail.com on 30 Mar 2009 at 1:08
Original issue reported on code.google.com by
nunchaku...@gmail.com
on 30 Mar 2009 at 1:08