How to fix it Warning: array_reduce() expects parameter

how to fix it Warning: array_reduce() expects parameter 1 to be array, null given in /hermes/bosoraweb176/b2792/ipg.aloootcom/racuna23 - Copy.php on line 47 Warning: array_count_values() expects parameter 1 to be array, null given in /hermes/bosoraweb176/b2792/ipg.aloootcom/racuna23 - Copy.php on line 48 You chose “2-bed(s)” and it is in hotel 3.
Warning: Invalid argument supplied for foreach() in /hermes/bosoraweb176/b2792/ipg.aloootcom/racuna23 - Copy.php on line 76

You probably need to define your arrays before the build so if there is empty results the array is at least defined. Partial example;

$result = array();
//Then build
while( etc...
    $result[] = 

Be aware that if you do not specify the optional third parameter of array_reduce and pass it an empty array, it will return NULL.

This topic was automatically closed 91 days after the last reply. New replies are no longer allowed.