当前位置:首页 > CMS教程 > 其它CMS > 列表

Yii框架函数简单用法分析

发布:smiling 来源: PHP粉丝网  添加日期:2021-12-16 10:30:36 浏览: 评论:0 

这篇文章主要介绍了Yii框架函数简单用法,结合实例形式分析了Yii框架函数基本用法及相关操作注意事项,需要的朋友可以参考下。

本文实例讲述了Yii框架函数简单用法,分享给大家供大家参考,具体如下:

1.redict

return $this->redirect(['login']);

redict其实是对于以下的封装  等同于

$response=Yii::app->response();

$response->headers->add('location','www.phpfensi.com');

2.save

第一个参数是执行验证,第二个参数是指的那个字段(空的话 就保存全部)

如果是一个两个的话  必须知名属性

  1. * @param bool $runValidation whether to perform validation (calling [[validate()]]) 
  2.  * before saving the record. Defaults to `true`. If the validation fails, the record 
  3.  * will not be saved to the database and this method will return `false`. 
  4.  * @param array $attributeNames list of attribute names that need to be saved. Defaults to null, 
  5.  * meaning all attributes that are loaded from DB will be saved. 
  6.  * @return bool whether the saving succeeded (i.e. no validation errors occurred). 
  7.  */ 
  8. public function save($runValidation = true, $attributeNames = null) 

3.Yii前面加一个\代表的全局

4.as

一个类文件中重复可以使用as 起一个别名

5.设置布局文件

Yii框架函数

6.classname

Yii框架函数

order::classname---表示的order的AR类的所有的属性

Tags: Yii框架函数

分享到: