本文实例汇总了Yii编程开发常见调用技巧。分享给大家供大家参考,具体如下:
1. 设置cookie:
expire = time()+60*60*24*30; //有限期30天
Yii::app()->request->cookies['mycookie']=$cookie;
2. 读取cookie:
request->getCookies();
echo $cookie['mycookie']->value;
3. 销毁cookie:
request->getCookies();
unset($cookie[$name]);
4. 获取更新的数据 id
save();
$id = $post->attributes['id'];
5. 获取插入的数据 id
db->getLastInsertID();
6. 获取get,post过来的数据
request->getParam('id');
7. 获取ip地址
request->userHostAddress;
8. 获得上一页的url以返回
request->urlReferrer;
9. 得到当前url :
request->url;
10. 得到当前home url :
homeUrl;
11. 得到当前return url :
user->returnUrl;
12. 项目路径 :
BasePath);
13. 项目目录 :
request->baseUrl;
14. 在view中得到当前controller的ID方法:
request->baseUrl;
15. 在view中得到当前action的ID方法 :
getController()->getAction()->id;
16. yii判断提交方式 :
request->isPostRequest;
17. 得到当前域名:
request->hostInfo;
18. 得到proteced目录的物理路径:
basePath;
更多关于Yii相关内容感兴趣的读者可查看本站专题:《》、《》、《》、《》、《》、《》及《PHP常见数据库操作技巧汇总》
希望本文所述对大家基于Yii框架的PHP程序设计有所帮助。
原文链接:https://www.f2er.com/php/19349.html