Message: array_push() expects parameter 1 to be array, null given
if(count($br_code)>0){
$br_where = array();
foreach ($br_code as $code)
{
array_push($br_where, "asr_product_code LIKE '$code%'");
}
array_push($where,"(".implode(" OR ", $br_where).")");
}
array_push($where,"(".implode(" OR ", $br_where).")"); 这行提示
A PHP Error was encountered
Severity: Warning
Message: array_push() expects parameter 1 to be array, null given
Filename: controllers/csv.php
Line Number: 109