PHP - Fatal error: Unsupported operand types

前端 未结 5 1429
别跟我提以往
别跟我提以往 2020-12-19 07:59

I keep getting the following error and I was wondering on how to fix?

Fatal error: Unsupported operand types in C:\\wamp\\www\\tuto\\core\\Controller.php on          


        
5条回答
  •  借酒劲吻你
    2020-12-19 09:01

    The solution is in the error. You are trying to sum two value that has different types. You are summing array with normal value;

    $this->vars +=  $key;
    

    $key shouldnt be an array

    Or second option;

    $this->vars should be an array

提交回复
热议问题