欢迎光临
我们一直在努力

Thinkphp切换php版本报错:implode(): Passing glue string after array is deprecated. Swap the parameters

Thinkphp切换至php7.4版本报错:implode(): Passing glue string after array is deprecated. Swap the parameters

相关代码:

                $whereStr .= $key . ' ' . $exp . ' ' . $this->parseValue($value, $field);
            }
        } elseif ('LIKE' == $exp || 'NOT LIKE' == $exp) {
            // 模糊匹配
            if (is_array($value)) {
                foreach ($value as $item) {
                    $array[] = $key . ' ' . $exp . ' ' . $this->parseValue($item, $field);
                }
                $logic = isset($val[2]) ? $val[2] : 'AND';
                $whereStr .= '(' . implode($array, ' ' . strtoupper($logic) . ' ') . ')';
            } else {
                $whereStr .= $key . ' ' . $exp . ' ' . $this->parseValue($value, $field);
            }
        } elseif ('EXP' == $exp) {
            // 表达式查询
            $whereStr .= '( ' . $key . ' ' . $value . ' )';
        } elseif (in_array($exp, ['NOT NULL', 'NULL'])) {
            // NULL 查询
            $whereStr .= $key . ' IS ' . $exp;

错误行:

$whereStr .= '(' . implode($array, ' ' . strtoupper($logic) . ' ') . ')'; 

改为:

$whereStr .= '(' . implode( ' ' . strtoupper($logic) . ' ',$array) . ')'; 
赞(0)
版权归原作者所有,如有侵权请告知。达维营-前端网 » Thinkphp切换php版本报错:implode(): Passing glue string after array is deprecated. Swap the parameters

评论 抢沙发

  • 昵称 (必填)
  • 邮箱 (必填)
  • 网址