How do I correct this Illegal String Offset?

前端 未结 3 1706
失恋的感觉
失恋的感觉 2020-12-01 16:04

I am receiving this error \"Warning: Illegal string offset \'type\' in /home/mysite/public_html/wp-content/themes/evento/lib/php/extra.class.php on line 32\"

and I r

3条回答
  •  心在旅途
    2020-12-01 16:36

    if(isset($rule["type"]) && ($rule["type"] == "radio") || ($rule["type"] == "checkbox") )
    {
        if(!isset($data[$field]))
            $data[$field]="";
    }
    

提交回复
热议问题