我只是想知道 我如何在php中创建代码快捷方式 我看到它只是使用phpfox脚本:
//for get user id
Phpfox::getUserId();
//when user most be logged in
Phpfox::isUser(true);
//or user must be admin for do this action
Phpfox::isAdmin(true);
//or this for insert query
Phpfox::getLib('database')->query("")
//so i can get user id easy with this simple code
$userid = Phpfox::getUserId();
所以这些是捷径吗?
运行一些代码并返回一些就像调用函数一样
那我怎么能创造这样的东西呢?为了获得某些东西而召唤它......
答案 0 :(得分:1)
如果我理解你的问题,你应该阅读数据库抽象层..
答案 1 :(得分:0)