cakephp菜鸟笔记-零碎重要提示(不断补充)

来源:互联网 发布:网络监控系统的组成 编辑:程序博客网 时间:2024/05/21 17:59
1、有些全局变量可以在view使用,使用img、js里面的文件都有
<?php echo $html->image($p['Product']['thumb_url'],array('onclick'=>$remoteFunction));?>
所以如要使用,请网$html的helpers查找方法。
2、  Session的读写很简单,$this->Session->write('lang',0);$lang = $this->Session->read('lang');
3、  $this->render($view,$layout),进行调用其他view。

原创粉丝点击