Yii使用技巧大汇总
本文汇总了yii使用技巧。分享给大家供大家参考,具体如下:
一、从yii权威指中学到的
db组件 'schemacachingduration'=>3600, 为什么不起做用?
需要开缓存
如何在页面下边显示sql的查询时间
在log组件的routes中加入
array( 'class'=>'cprofilelogroute', 'levels'=>'error, warning', )
同时在db组件中加入
同时在这种情况下,可以用cdbconnection::getstats() 查看执行了多少个语句,用了多少时间
如何知道某一个程序段运行需要的时间
配置好cprofilelogroute后,在需要测试的地方加上
yii::beginprofile('blockid'); //程序段 yii::endprofile('blockid');
'enableparamlogging'=>true,的作用是?
在日志的bind的参数后边跟数的值
如何在页面底部显示所有的db相关的日志
同上,配置log组件的routes中加入
array( 'class'=>'cweblogroute', 'levels'=>'trace, info, error, warning', 'categories' => 'system.db.*', //'showinfirebug' => true, 将在firebug中显示日志 ),
把日志记录到数据库
array( 'class'=>'cdblogroute', 'logtablename'=>'applog', 'connectionid'=>'db', ),
运行时表applog会自动生成,如果不能生成,参照api自已建立
如何记录$_get,$_session等信息,在以上的routes中各个配置中加上
log配置中的level设置不对,可能会得不到日志信息
另外level,category的值可以随便写,
只要在用yii::log("","自定义level","自定义的category")时对应起来即可
如何记录更详细的信息,能记录stack,在入口文件中加上
[15:31:57.226][trace][system.db.cdbcommand] querying sql: show columns from `bangdan` in e:apmserv5.2.6wwwhtdocsdayouhui.comprotectedmodelsbangdan.php (21)
in e:apmserv5.2.6wwwhtdocsdayouhui.comprotectedcomponentshotbangdan.php (21) in e:apmserv5.2.6
如果在调试时,终止程序运行且看到日志,不能用die及exit;
用application::end,即yii::app()->end(),其会触发onendrequest事件,日志就是在这个事件中记录的
activerecord几个占位方法重写的注意点
必须带boolean返回值
如何发布一个资源文件并引用
$css=yii::app()->getassetmanager()->publish(dirname(__file__)."/aa.css"); yii::app()->clientscript->registercssfile($css);
如果改变activelable中默认的标题
重写方法attributelabels
过滤不良代码:
$purifier=new chtmlpurifier; $purifier->options=array("html.allowed"=>"div"); $content=$purifier->purify($content);
或者
<?php $this->beginwidget('chtmlpurifier'); ?> ...display user-entered content here... <?php $this->endwidget(); ?>
如何防止重复提交?
提交后
如何在成功后显示一个提示,用户刷新页时去掉提示
cwebuser->setflash(); getflash();
如何防止重复提交, 并在提交成功后给出提示?
控制器中:
yii::app()->user->setflash('submit','thanks'); $this->refresh();
view中:
if(yii::app()->user->hasflash('submit')){ echo yii::app()->user->getflash('submit'); }
一般我们是跳转到列表页,或用redirect跳到编辑页,就不需要了,如果还是要显示当前页
以上就有用了,比如在当前时显示,编辑或添加新的记录
如何分页
itemcount总记录条数
cpagination代表分页信息,有多少页,每页几条记录等
clinkpager生成分页的代码,自定义css可以给属性cssfile一个值
$criteria=new cdbcriteria(); $pages=new cpagination("数据库中的总记录数"); $pages->pagesize=2; $pages->applylimit($criteria);//给$criteria->limit offset等符值 $posts=post::model()->findall($criteria); $this->widget('clinkpager',array('pages'=>$pages));
列表如何排序
$criteria=new cdbcriteria(); $sort = new csort('post'); $sort->defaultorder=" status asc"; $sort->applyorder($criteria); $posts=post::model()->findall($criteria);
应用时用:
实际是生成一个带参数的url,然后在在applyorder时应用这些参数修改$criteria,得到相应的查寻结果
如何生成并验证验证码:
基本用法
原理ccaptcha这个widget会在run时调用当前控制器的$captchaaction='captcha'方法,这个方法指到一个类ccaptchaaction
其会生成验证码图象,并记入到session中
如何显示静态页
重写actions:
'help'=>array( 'class'=>'cviewaction', 'basepath'=>'help', //指定目录名 'defaultview'=>'default', 'viewparam'=>'help' //get参数 ),
假定当前控制器是post
那么可以能过/post/help/help/content访问help目录下的content.php
可以建立子目录比如help/reigterhelp/content.那可以通过/post/help/help/registerhelp.content来访问
用cviewaction的好处时,可以与其它的view共享layout
关于没有权限访问跳转的url相关
当没有权限时调用caccesscontrolfilter类中的accessdenied,其调用cwebuser中的loginrequired(),记录当前的returnurl后跳转到
cwebuser配置中的loginurl,在此处登陆后,可以通过redirect跳转到
当强制显示登陆表单,比如判断用户是guest就一直列出登陆表单,不会调用loginrequired, 就得不到returnurl,这时候想跳回去,参见cookbook上相关贴子
registercorescript
在framework/web/js/package.php中列出的才是多对多关联条件
$criteria->addincondition("categorys.id",$in); $criteria->addsearchcondition('shop.name',$keyword); $shops=shop::model()->with(array("categorys"=>array('together'=>true)))->findall($criteria);
同时要在shop模型中加入alias="categorys" ,另外together=true放在模型的关联中也可
yii中的rbac权限,用数据库存item,
在system/web/auth下找到相应的sql导放到数据库中
配置
'authmanager' => array( 'class' => 'cdbauthmanager', 'connectionid' => 'db', ),
如果在sql中导入的三个表的表名不是默认的,需要在这上边的配置中配置,具体的看api
$auth=yii::app()->authmanager; //$auth->createoperation("post",'postpost'); //$auth->createtask("post","posts"); $auth->createrole("post","post"); auth->assign("post",'demo'); if(yii::app()->user->checkaccess("post")){ echo "yes"; else{ echo "no"; }
这种情况下三者是一样的
如何获得上一页的url以返回
accesscontrol 是ccontroller中内置的过滤方法,其它的还有ajaxonly postonly
cmaskedtextfield此组件用于限制用户的输入,对应的jquery插件
在一对多,多对多查询时,the eager loading 联合所有的表生成一条语句,如果主表有limit的查询选项,那么他将单独执行,然后再执行与关联表有关的语句,返回相关表的数据对象,这就是为什么在做大优惠时,以中间表为查询条件出错的原因,
解决办法
with()返回 cactivefinder对象,其方法together(),既使主表中有limit/offset 也是返回一条sql;
多对多查询时,分页有时候页中显示的条数不正确,因为有重复的项,加上
模型的rules中,验证某个字段不能重复,array('name', 'unique','message' => '有重复的名子'),
cstatepersister是yii的核心组件,提供了基于文件的数据保存方式,可以不在同的请求中使用
coutputcache 即是一个组件,又是一个filter,前者的时候用于在view中缓存内容,后者的时候用于在controller中缓存
就是说片段缓存,是把coutputcache当一个widget来用,页面缓存把coutputcache当作一个filter来用动态缓存,用ccontroller的一个方法 renderdynamic($callback);
coutputcache几个属性,duration,dependency
另外还有几个,可以通称为variation, 有什么作用呢?
在begincache是需要手工指定一个id,variation的作有就是自动给生成这个id
在布署模式的时候,有错误不会有stack样的提示,会显示一个errorxxx的错误
如何在程序有错的时候跳到指定的action
在components中设置
'errorhandler'=>array( 'erroraction'=>'site/error', ),
在此action中可以能过
把字符串分解成数组,并去掉空值
cactiverecord::exits();判断有没有这样的记录,一般用于添加时,判断某字段有没有重复
cactivedataprovider 一个基于activerecord的数据提供源
常用的用法
$dataprovider=new cactivedataprovider('post', array( 'criteria'=>array(), 'pagination'=>array(), 'sort'=>array(), ));
上如
'sort'=>array( 'defaultorder'=>'status, update_time desc', ),
clistview同上结合使用,其中的_view中可以用一个$data的变量,代表当前的model数据
如果dataprovider中的pagination,sort设为false,则cliveview中对应的部分也无法使用
$this->widget('zii.widgets.clistview',array( 'dataprovider' => $dataprovider, 'itemview' => '_view', 'template' => '{items}{sorter}{pager}', 'sortableattributes' => array( ), ));
cgridview的使用也结合$dataprovider,
用的时候主要是对columns的配置,主要有
cdatacolumn, clinkcolumn, cbuttoncolumn and ccheckboxcolumn.具体用法看api
总的说来cgridview没有clistview灵活
插入meta信息
yii::app()->clientscript->registermetatag('keywords','关键字'); yii::app()->clientscript->registermetatag('description','一些描述');
cmap::mergearray() 比array_merge更智能的合并数组,yii中配置的合并用这个
cclipwidget 通过ob_start ob_getconent生成一段不显示的内容,可以能过ccontroller::clips访问,如
可以通过$this->clips['name']来显示,其中的renderclip如果为false,则在当前位置不显示内容
如果在model一次验证多个属于,显示不同的内容?如下 [后来发现这个不起作有]
return array( array('title, content', 'required', 'message'=>'please enter a value for {attribute}.'), // ... other rules );
获得服务器时间
维护程序时,这样子所有的请求转发到一个地方
根据二级域名缓存
array( 'coutputcache + search', 'duration' => 120, 'varybyparam' => array('q','page'), 'varybyexpression' => "app()->request->hostinfo", ),
有多个分站时,同步登陆,基于cookie
'user'=>array( 'identitycookie'=>array('domain'=>'.dayouhui.com'), 'allowautologin' => true, )
如果是基本于session
'session' => array( 'cookieparams' => array('domain' => '.dayouhui', 'lifetime' => 0), 'timeout' => 3600, ),
如何使用theme
在main.php中配置
如何得到当前使用的主题
得到名子
themes文件夹和protected是同级的,其下边某个theme的目录结果同protected/views下一样
关于skin
用theme改变view的外观,skin是用来改变widgets的外观的
skin是健值对用于初始化一个widget的属性
要对widget使用skin,需要做以下几步
1:配置
'widgetfactory'=>array( 'enableskin'=>true, ),
2:在views下建立skins目录
3:在skins目录下建立与widget名子一样的php文件,返回数组,即能用于widget的初始配置
4:在php文件中,如果有defautl的配置,会先找这个skin
5:如果应用了theme,程序会先去对应的theme目录下的skins中找配置文件
6:如果只是想给widget统一一个skin,建议用customizing widgets globally
如果防止post跨站攻击
'request'=>array( 'enablecsrfvalidation'=>true, ),
这时候生成的表单要用chtml::form(),其会写一段代码在cookie中
防止cookie攻击
'request'=>array( 'enablecookievalidation'=>true, ),
同时生成与得到cookie是要用 chttpcookie
如何让表单验证不通过的提示为中文
在main.php的配置中加上
如何实现仿google的自动完成功能
<?php $this->widget('cautocomplete', array( 'name'=>'xxx', 'url'=>array('suggesttags'), 'multiple'=>false, 'htmloptions'=>array('size'=>50), )); ?>
然后在url指定的地址中的方法中如下输出,即可
echo "anbnc"
//cgridview详解
这东西在后台比较有用,能加速开发的速度,值得一看
cgridview用表格的方式显示数据项
每一行代表一个数据项,一列通常代表数据项的一个属性
cgridview支持排序和分页,可以用ajax或普通的方式
cgridview必序和data provider一起使用
最简单的用法
$dataprovider = new cactivedataprovider('post'); $this->widget('zii.widgets.grid.cgridview',array( 'dataprovider'=>$dataprovider, ));
这会用表格的方式显示每一条数据项,每一列是post的一个属性
在显示中带了分页和排序
我们可以自定义cgridview::columns属性,以自定义表格列的显示方式
这个cloumns如何配置呢?
其是一个数组,每一个数组元素对应着一列的配置,可以是字符串或数组
1、如果是字符串,格式是name:type:header 后两者是可选的,根据这三个值,创建一个cdatcolumn实例
其中type参见cformatter
2、如果是数组,其可以实例化cddatacolumn、clinkcolumn,cbuttoncolumn,ccheckboxcolumn实例,具体实例化哪个由数组中的class指定,默认是cdatacolumn
2.1,如果
则可以指定name或者value,如果指定以value优先
用cdatacolumn时如何以关联表的数据序列?
代码如下:表示可以post关联的author中的username排序列
$dataprovider = new cactivedataprovider('post',array( 'criteria'=>array( 'with'=>'author', ), 'sort'=>array( 'attributes'=>array( 'title','create_time', 'author_id'=>array('asc'=>'author.username asc','desc'=>'author.username desc','label'=>'作者') ) ), )); $this->widget('zii.widgets.grid.cgridview',array( 'dataprovider'=>$dataprovider, 'columns'=>array( 'title', 'create_time', array('name'=>'author_id','value'=>'$data->author->username'), ), ));
另外cdatacolumn还有一个filter属性,如果是空,那么生成一个textfield,如果是数组(键值),则生成一个dropdownlist在当前列的上部,供搜索
2.2:如果class=>"clinkcolumn"
则生成一个连接
2.3:如果class="ccheckboxcolumn"
可以生成一个checkbox供选择,且只能选一个
可以配置cgridview::selectablerows 如果是0,则不能选,如果 1,只选一个如果是2或其它值,则可以选多个
代码如下:
$this->widget('zii.widgets.grid.cgridview',array( 'dataprovider'=>$dataprovider, 'selectablerows'=>2, 'columns'=>array( array('class'=>'ccheckboxcolumn','name'=>'title','id'=>'select'), ),
2.3:如果class="cbuttoncolumn"
array( 'class'=>'cbuttoncolumn', 'updatebuttonurl'=>'yii::app()->createurl("post/edit",array("id"=>$data->id));', ),
修改updatebuttonurl为编辑贴子
如何用gridview生成一个代搜索的管理列表
1、在model的rules 设定可以搜索的属性
2、在model中,添加搜索时的方法
public function search() { $criteria=new cdbcriteria; $criteria->compare('title',$this->title,true); $criteria->compare('status',$this->status); $criteria->compare('create_time',$this->create_time); return new cactivedataprovider('post', array( 'criteria'=>$criteria, 'sort'=>array( 'defaultorder'=>'status, update_time desc', ), )); }
3、在controler中,写接受搜索用到的表单的值的方法
public function actionadmin() { $model=new post('search'); if(isset($_get['post'])) $model->attributes=$_get['post']; $this->render('admin',array( 'model'=>$model, )); }
4、在view中用cgridview显示
设置好
<?php $this->widget('zii.widgets.grid.cgridview', array( 'dataprovider'=>$model->search(), 'filter'=>$model, 'columns'=>array( ), )); ?>
以上代码大部分是yii自动生成的,只要做少量修改即可
有时候会出现,搜索后页面为空的清况,原因可能是
layout/main.php中
echo $content外层无div,就是说main.php中必须有一个div包含$content
其用列表的形式显示数据,不象cgridview一样,用表格显示数据,clistview用一个 view模板来显示每一条数据
其支持排序与分页
常用的代码如下
<?php $dataprovider = new cactivedataprovider('post',array( 'pagination'=>array( 'pagesize'=>2 ), )); $this->widget('zii.widgets.clistview',array( 'dataprovider'=>$dataprovider, 'itemview'=>'_view', 'template'=>' {summary} {items} {pager}{sorter}', 'sortableattributes'=>array( 'title', 'create_time'=>'post time', ), ));
快速生成表单,支持ajax验证,对于比较复杂的验下最好是自己生成表单,写验证方法
常用代码,在controller中
public function actionform() { $post = new post(); if(isset($_post['ajax']) && $_post['ajax']==='post'){ echo cactiveform::validate($post); yii::app()->end(); } if(isset($_post['post'])){ $post->attributes = $_post['post']; if($post->save()){ echo '存成功了'; } } $this->render('form',array('post'=>$post)); }
在view中
<?php $form = $this->beginwidget('cactiveform',array( 'id'=>'post',//这里与controller中的ajax对应 'enableajaxvalidation'=>true, )); ?> <?php echo chtml::errorsummary($post); ?> <?php echo $form->labelex($post,'title');?> <?php echo $form->textfield($post,'title')?> <?php echo $form->error($post,'title'); ?>
error一定要写上,要不不会触发ajax验证
<?php echo $form->labelex($post,'content');?> <?php echo $form->textfield($post,'content')?> <?php echo chtml::submitbutton($post->isnewrecord ? 'create' : 'save'); ?> <?php $this->endwidget(); ?> //cbreadcrumbs常用代码 <?php $this->widget('zii.widgets.cbreadcrumbs', array( 'links'=>$this->breadcrumbs, 'homelink'=>'<span><a href="http://abc.com">shouye</a></span>', 'separator'=>'>>>' )); ?>
其中breadcrumbs中controller中的一个属性,如果要出现导航,就要在view中给此属性附值
生成的html如下
<div class="breadcrumbs"> <span><a href="http://abc.com">shouye</a> </span>>>><span>managde posts</span>>>> <span>b</span>>>><span>c</span></div>
所以如果网站用到导航的时候,美工最好把导航代码定义如上
//cdetailview 用在仅仅是为了查看数据时,还是比较有用的,比如用在后台
如何在提交后显示一段提示
在控制器中
if(isset($_post['name'])){ yii::app()->user->setflash('success','you are success'); $this->refresh(); }
在view中
if (yii::app()->user->hasflash('success')){ echo 're is'.yii::app()->user->getflash('success'); }else{ echo 'no'; }
如何得到当前域名:
activedropdownlist,给出提示,并有值
array('empty'=>array(0=>'选择分组') <input type="submit" class="btn" value="提交" />
验证码如何生成及验证:
controller中:
public function actions() { return array( 'captcha'=>array( 'class'=>'ccaptchaaction', 'backcolor'=>0xffffff, 'maxlength'=>4, 'minlength'=>4, ), ); }
view中
<?php echo chtml::activetextfield($user, 'verifycode');?> <?php $this->widget('ccaptcha',array( 'captchaaction' => '/site/captcha', 'showrefreshbutton' => false, 'clickableimage' => true, 'imageoptions' => array('align'=>'top', 'title'=>'重新获取'), )); ?>
model中
array('verifycode', 'captcha', 'captchaaction'=>'site/captcha', 'message' => '输入的验证码不正确'), set_time_limit(0);//禁止角本超时
如何想把手工的东西记录的数据库
main.php中配置log
array( 'class'=>'cdblogroute', 'levels'=>'info', 'logtablename'=>'log', 'connectionid'=>'db', ),
应用时
deleteallbyattributes(array("phone"=>$phones)直接接受一个数组,可以删除数组中符合条件的记录
yii_blog study重新看了一遍yii blog,有些记录会与上边的重复
yii:trace() 在debug模式是才记录信息,同时在main.php中的log中的配置中的levels中要有trace,至于记录多少
栈由index.php中的yii_trace_level决定
配置gii
'modules'=>array( 'gii'=>array( 'class'=>'system.gii.giimodule', 'password'=>'123', ), ),
获得客户端ip
if($_server['http_client_ip']){ $ip = $_server['http_client_ip']; }elseif($_server['http_x_forwarded_for']){ $ip = $_server['http_x_forwarded_for']; }else{ $ip = $_server['remote_addr']; }
cactiveform还是比较强大的,建议在以后的项目中form都用这个来实现
layout/中的视图是可以继承的
然后在中间出现$content即可
create,update最好是分开放在两个action中,共用一个form,中间可以加一层view,以在头尾显示不同的东西
成段的完成一个功能的代码尽量拿出来放到一个方法中
$this->beginwidget('cmarkdown', array('purifyoutput'=>true)); echo $data->content; $this->endwidget();
linkbutton,在删除时需要用js提示,可以看下这此组件中的comfirm
而且他们的提交方式都是post,是因为在jquery.yii.js写死了
具体的以在源文件中低部找到那段js中的ajaxsubmit,所在的js看下
filter是在执行action之前或之后执行的一段代码,要应用filters必须得写
ccontroller::filters()方法
为什么在filters方法写上
return array( 'accesscontrol', // perform access control for crud operations );
能进行crud验证呢?
accesscontroller是ccontronller内置的filter,其调用
accessrules,得到验证规定,所以也要重写对应的accessrules,返回一个验证规则的数组成部分
if the application uses modules,
a root alias is also predefined for each module id and refers to the base path of the corresponding module
如:echo yiibase::getpathofalias('bbs');得到module bbs的路径
关于curlmanager
matchvalue是指,对于一个url规则,正常情况下是只看参数的名子是否一样就应用规则
如果matchvalue=true,则也要看值
如,规则
'index-/<id:d+>'=>array("book/index",'matchvalue'=>false), $this->createurl('book/index', array('id'=>'abcd'));
可以应用以上规则的,
如果规则中的matchvalue=true,则就不能应用了
xss又叫css (cross site script) ,跨站脚本攻击。
它指的是恶意攻击者往web页面里插入恶意html代码,当用户浏览该页之时,
嵌入其中web里面的html代码会被执行
renderpartial()
render()
后者会把需要的js,css等嵌入
前者可以通过把最后一个参数设置成true完成一样的功能
addincondition 不用考虑数组是空的情况yii会自动处理
如何得到当前url?
ctype_开始的几个函数,用于检查字任串是不是符合要求,代替了简单的正则表达式
ccontroller中的setpagestate可以保存同一页中的post的表单状态
如何通过behavior修改cactiverecord?
写类文件继承自
class llog extends cactiverecordbehavior{ public function beforedelete($event){ $model = get_class($this->owner); //做要做的事,比如日志或修改模型字段内容 } }
然后修改模型文件
public function behaviors() { return array( // classname => path to class 'llog'=>'application.behavior.llog', ); }
如何在应用程序处理请求之前执行一段操作?
在main.php中配置
当然这个function方法要存在
也可以写在放口文件index.php中,代码改成如下
$app = yii::createwebapplication($config); $app->onbeginrequest = 'begin'; $app->run(); function begin(){ echo 'yyyyydddyyyyyy'; }
为什么在cactiverecordbehavior中用
beforesave就可以代表了事件onbeforesave
注意基为中最上边的events方法中返回的对应关系
在调用attacth(cbehavior中)的时候,
就指定了事件onbeforesave的处理函数是用本类中的beforesave
yii中的ccomponent,cevent与behavior及cactiverecordbehavior个人理解
这一块教程少,今天个人理解了下,写了个小例子,有助于理解
完成如下功能,一个jtool类,继承ccomponent,当其长度改变时,调用事件,输出"change me".
jtool.php在protected/components 下
<?php class jtool extends ccomponent{ private $_width; public function getwidth(){ return $this->_width ? $this->_width : 1; } public function setwidth($width){ if($this->haseventhandler('onchange')){ $this->onchange(new cevent()); } $this->_width = $width; } public function onchange($event){ $this->raiseevent('onchange', $event); } }
ok,功能已经实现了,找个控制器,执行
$j = new jtool(); $j->onchange = "showchange"; //给事件绑定handle showchange $j->width = 100; //调用setwidth,解发绑定的事件showchange function showchange(){ echo 'changed me'; }
现在我们想给jtool添加一个功能,返回长度的100倍,我们可以继承jtool.php写一个方法
class jtoolsub extends jtool{ public function get100width(){ return $this->width*100; } }
ok,功能实现了,这个执行就简单了new jtoolsub调用方法即可
上边的这两种办法,就是仅完成功能,下边演示behavior及events来实现
如何用behavior来实现上边的增加一个方法,返回长度的100倍的功能呢?
写类jbe
jbe.php在protected/behavior 下
class jbe extends cbehavior{ public function get100width(){ return $this->owner->width*100; } }
ok,功能已经实现了,找个控制器,执行
$j = new jtool(); $j->attachbehavior('jbe', 'application.behavior.jbe'); echo $j->get100width();
如何用behavior实现jtool中的长度改变时,调用一个事件的功能呢?
写类jbe
class jbe extends cbehavior{ public function events(){ return array_merge(parent::events(),array( 'onchange'=>'change', )); } public function change(){ echo 'changed'; } public function get100width(){ return $this->owner->width*100; } }
ok,功能实现随便找个控制器,执行
$j = new jtool(); $j->attachbehavior('jbe', 'application.behavior.jbe'); $j->width = 100;
这里的要点是events方法
返回的数组array('onchange'=>'change')定义了事件(event)和对应的事件处理方法(event hander)
事件是是compents(jtool中)定义的,即jtool中的onchange
处理方法同由behavior(jbe中)类定义的,即jbe中的change
这样子再看cactiverecordbehavior,其是绑定给cactiverecord 这个组件的,绑定方法重写behaviors()
cactiverecordbehavior中的events() 方法返回事件及事处理函数的对应,如:
即组件cactiverecord中的onbeforesave这个事件对应的处理函数是cactiverecordbehavior中的beforesave方法
这样子cactiverecord在调用save()时,触发事件onbeforesave,调用cactiverecordbehavior对应的处理函数beforesave
我们只要写一个cactiverecordbehavior的子类,重写其中的beforesave,执行一些操作,然后给cactiverecord绑定即可
如果你自己有个目录下有些类或文件常用,可以在main.php的最上边定义一个路径别名
如果是多个可以在main.php中的array中加一个配置
'aliases'=>array( 'local'=>'path/to/local/' ),
如何得到proteced目录的物理路径?
widget是发布资源
$url = yii::app()->getassetmanager()->publish(yii::getpathofalias('application.components.homeuserlived')); cs()->registercorescript('jquery'); cs()->registerscriptfile($url.'/location.js' ,cclientscript::pos_head); cs()->registerscriptfile($url.'/ylchinaarea.js' ,cclientscript::pos_head); cs()->registercssfile($url.'/style.css');
如何写application component, 即在main.php可配置
可以通过yii::app()->my来访问?
继承capplicationcomponent即可,并可以自带behavior等
yii中读写session的两种方法
$session = yii::app()->session; $session['terry'] = 30; var_dump($session['key']); yii::app()->user->setstate('tom', '40'); var_dump(yii::app()->user->getstate('key', 'default'));
soap非yii教程,意思是不用yii框架的时候要对象提供webservice的写法
分两种wsdl模式,和非wsdl模式,先看后者
这个也比较简单,服务器端server.php:
<?php ini_set('soap.wsdl_cache_enabled',0); class student { public function getinfo($name,$age){ if($age == 20){ throw new soapfault(-1, 'cannot divide by zero!'); } $xml = "<root><name>".$name."</name>"; $xml .= "<age>".$age."</age></root>"; return $xml; } } $soaps = new soapserver(null,array('uri' => 'http://www.dayouhui.com')); $soaps->setclass('student'); $soaps->handle(); ?>
客户端client.php:
<?php $soap = new soapclient(null,array('location'=>"http://localhost/mysoap/index.php",'uri'=>'inadex.php')); echo $soap->getinfo('a','b');
这样子即可
yii,componnts那快,忘了,写了个小例子回忆了下
是写一个可以写在main.php中的components并绑定行为,事件
class extwindow extends capplicationcomponent{ private $title = 'title'; public $oldtitle; public function gettitle(){ return $this->title ? $this->title : 'old title<br />'; } public function settitle($title){ echo '=='.$this->oldtitle.'=='; $this->oldtitle = $this->title; $this->title = $title; if($this->haseventhandler('ontitlechange')){ $event =new cevent($this); $this->raiseevent('ontitlechange', $event); } } //必须有这么个方法,其和raiseeent中的事件一样,具体看代码 public function ontitlechange($event){ } }
<?php class window extends cbehavior{ public function events(){ return array_merge(parent::events(),array( 'ontitlechange'=>'titlechange', )); } public function titlechange($event){ echo $event->sender->title; echo 'event titlechange is handled in behavior<br />'; echo $this->owner->title; } public function titleold(){ echo '<br />old title is is '.$this->owner->oldtitle; } }
main.php中的写法
'extwin'=>array( 'class' => 'extwindow', 'oldtitle'=>'我是旧的', 'behaviors'=>array('win'=>'application..behavior.window')
一对多,多对多的关联时最后的参数 together说明
如果为false,分开查多个语句
如果为true,强制生成一个语句
如果没有设置,分页页生成多个语句,不分页时生成一个语句
),
多对多时,查询时,中间表的名子叫 (关联名_关联名)
with选项的作用是eager loading
together的作用是 要不要形成一个语句
当是一个sql语句是记录会有重复,这时候分页分出现相同的记录,加上group=>true即可,
只要弄明白了,你生成的sql是一条还是多条sql就明白在多对多查询时的结果了
两个表不是用主键关联
表带talbeprefix是,多对关联,键的写法
希望本文所述对大家基于yii框架的php程序设计有所帮助。