«

thinkphp5空方法检查

Genius 发布于 阅读:42


<?php
namespace app\test\controller;
use think\Controller;

class YangZheWei
{

    public function _empty($name)
    {

        return '此方法不存在:<br>'.$name;
    }
}

?>