07 2014 档案
摘要:《AR》CActiveRecord:path:/framework/db/ar/CActiveRecord.phpoverview:is the base class for classes representing relational data.It implements the active ...
阅读全文
摘要:path:framework/base/interfaces.phpoverview:This file contains core interfaces for Yii framework.interface IApplicationComponent:all application compon...
阅读全文
摘要:CComponent:path:framework/base/CComponent.phpoverview:This file contains the foundation classes for component-based and event-driven programming. ...
阅读全文
摘要:效果 ①基本效果:show()、hide()、toggle() ②滑动 slideDown()、slideUp()、slideToggle() 划上:$("p").slideUp("slow"); 划下:$("p").slideDown("slow"); $("p").sli...
阅读全文
摘要:ie 6 需要用document.documentElement.scrollTop 获取滚动条位置ie 其他版本可以用 document.body.scrollTop 获取滚动条位置其他浏览器可以用 window.pageYOffset 获取滚动条位置当聊天室的内容超出页面范围时,如何让页面刷新后...
阅读全文
摘要:php的trycatch与其它语言的trycatch相比有许多不同,而且用起来相对比较不爽。 php中,如果你制作的站点相对较大,同时模块化,并且在错误处理机制上有一套自己的处理机制,可以尝试使用trycatch,否则,可以考虑不使用它。 PHP的trycatch是捕获异常,但它却无法捕获P...
阅读全文
摘要:PHPCMS一、模版引擎如:调用单页面index.php?m=content&c=index&a=lists&catid=9.1.先获取到模版变量的值$template_list="list";然后通过$type!=0来判断是单页面, 然后通过$template = $setting['page_t...
阅读全文
摘要:1.颜色RGB值必须写全六位,否则显示黑色。如bgcolor=#FFF0F5,如果写成bgcolor=#0F5就失效,显示成黑色了。
阅读全文
摘要:dropDownList:Yii中可以采用CHtml类来实现,也可以用CActiveForm来实现。一、用CHtml来实现。VIEW中实现:'USA',7=>'France',3=>'Japan'),array('ajax' => array('type'=>'POST', //request ty...
阅读全文
摘要:数据库操作:$member_db = pc_base::load_model('member_model');$memberinfo = $member_db->get_one(array('userid'=>$userid));get_one($where = '', $data = '*', $...
阅读全文