Closed (fixed)
Project:
CAPTCHA Pack
Version:
5.x-1.0-rc1
Component:
Code
Priority:
Normal
Category:
Support request
Assigned:
Reporter:
Created:
2 Sep 2007 at 19:45 UTC
Updated:
16 Sep 2007 at 20:21 UTC
array_combine() is a PHP5 only function.
Fix (found it through google in http://drupal.org/project/money module, who in turn borrowed it from somewhere else):
//----------------------------------------------------------------------------
// PHP 4 compatibility.
/**
* Replace array_combine().
*
* Borrowed from PHP Compat 1.5 (http://pear.php.net/package/PHP_Compat).
*/
if (!function_exists('array_combine')) {
function array_combine($keys, $values)
{
if (!is_array($keys)) {
user_error('array_combine() expects parameter 1 to be array, ' .
gettype($keys) . ' given', E_USER_WARNING);
return;
}
if (!is_array($values)) {
user_error('array_combine() expects parameter 2 to be array, ' .
gettype($values) . ' given', E_USER_WARNING);
return;
}
$key_count = count($keys);
$value_count = count($values);
if ($key_count !== $value_count) {
user_error('array_combine() Both parameters should have equal number of elements', E_USER_WARNING);
return false;
}
if ($key_count === 0 || $value_count === 0) {
user_error('array_combine() Both parameters should have number of elements at least 0', E_USER_WARNING);
return false;
}
$keys = array_values($keys);
$values = array_values($values);
$combined = array();
for ($i = 0; $i < $key_count; $i++) {
$combined[$keys[$i]] = $values[$i];
}
return $combined;
}
}
-- first issue, so hope i did the right status
Comments
Comment #1
soxofaan commentedI already fixed this some days ago in HEAD by replacing array_combine calls with alternative implementations:
http://drupal.org/cvs?commit=79280
Thanks anyway
Comment #2
(not verified) commented