syntax error, unexpected 'if' (T_IF)

前端 未结 5 574
臣服心动
臣服心动 2020-12-12 02:09

I think I\'ve been staring at this for too long that now I\'m failing to identify the problem.

Can someone kindly point out where this is going wrong?

Error:

5条回答
  •  小蘑菇
    小蘑菇 (楼主)
    2020-12-12 02:43

    public static function textbox($name, $maxlength=''){
        return "";
    }
    

    should be:

    public static function textbox($name, $maxlength=''){
        $ret = "";
    }
    

提交回复
热议问题