联系官方销售客服
1835022288
028-61286886
在系统中的以下几句代码的意思是什么?
\Phpcmf\Service::C()->session()->set('fclogin_error_sn', 0);
\Phpcmf\Service::V()->display('admin/login.html');
\Phpcmf\Service::L('input')->get('username');
\Phpcmf\Service::M()->db->getPrefix();
其中的M、V、C是指向什么地方?是文件夹还是文件?具体指向哪个文件夹或文件?
L中的input是否可以是GET传参?还是只能POST传参?
\Phpcmf\Service::C()->session()->set('fclogin_error_sn', 0); 设置session变量
\Phpcmf\Service::V()->display('admin/login.html'); 指定模板页面
\Phpcmf\Service::L('input')->get('username'); 获取url的get参数username
\Phpcmf\Service::M()->db->getPrefix();读取数据库前缀,如dr_
\Phpcmf\Service::C() http://help.xunruicms.com/206.html
\Phpcmf\Service::V() http://help.xunruicms.com/206.html 同上
\Phpcmf\Service::M() http://help.xunruicms.com/207.html
\Phpcmf\Service::L() http://help.xunruicms.com/925.html\Phpcmf\Service::L不可以不可以不可以不可以接收POST和GET多种方式的参数 http://help.xunruicms.com/788.html