-
静态方法findBySql where(['>,''id','0']) id>1 对象占用的内存高 ->asAraay() 转化为数组降低内存,查看全部
-
$cookies->getVlaue('user')查看全部
-
数据模型: 1,和表名一致的文件; 2,引入命名空间:namespace app\models; 3, 使用命名空间:use yii\db\ActiveRecord; 4, 创建与表名一致的类并继承ActiveRecord; class tablename extends ActiveRecord{}查看全部
-
$layout = common ; //布局文件 $this 视图组件 如果想替换公共文件中的某段(数据块),可以在视图文件中使用: <?php $this->beginBlock('block1'); ?> <h1>....</h1> <?php $this->endBlock();?> 公共文件中调用 <?=$this->blocks['block1'];?> 判断显示数据块有木有,然后在显示 <?php if(isset($this->blocks['block1'])):?> <?=$this->blocks['block1'];?> <?php else: ?> <h1>hello Common </h1> <?php endif; ?>查看全部
-
在一个视图(index.php)中显示另一个试图(about.php): 在视图index.php文件中使用$this->render('about')显示about视图; 当需要传入参数时,用render的第二个参数:$this->render('about',array('key'=>'value'))查看全部
-
防止sql和script注入 <?php use yii\helpers\Html; use yii\helpers\HtmlPurifier; ?> <P><?=Html::encode($view_hello_str) ?> </P>//可以原样显示<script></script>代码 <P><?=HtmlPurifier::process($view_hello_str) ?> </P>//可以过滤掉<script></script>代码查看全部
-
布局文件 /views/laysout/查看全部
-
session.save_path session 保存的路径,在php.ini中设置 $session->set(); $session->get()取出session数据 $session->remove()删除session数据 /可以通过数组方式进行操作session $session[] = '' unset($sission[])//删除 //两张方式,一种是对象方式处理,另一种是数组方式查看全部
-
相应处理: $res = \YII::response; 更改状态码:$res->statusCode = "404"; 添加header: $res->header->add("pragma", "no-cache"); 修改header: $res->header->set("pragma", "max-age=5"); 删除header: $res->header->remove("pragma"); 跳转: $res->header->add("location", "http://www.baidu.com"); 重定向:$this->redirect("http://www.baidu.com", "302"); 文件下载:$res->header->add("content-disposition", "attachment; filename="a.jpg"); $res->sendFile("./robots.txt");查看全部
-
//修改数据 $result = Test::find()->where(['id'=>4])->one(); $result->title="title4"; $result->save();查看全部
-
<?php namespace app\models; use yii\db\ActiveRecord; use yii\validators; /** * */ class Test extends ActiveRecord { public function rules(){ return [ ['id','integer'], ['title','string','length'=>[0,5]] ]; } } //HelloController //添加数据 $test = new Test; $test->id="dss"; $test->title="title3"; $test->validate(); if($test->hasErrors()){ echo "data is error "; die; } $test->save();查看全部
-
//删除数据 //$results = Test::find()->where(['id'=>1])->all(); //$results[0]->delete(); Test::deleteAll('id>:id',array(':id'=>0));查看全部
-
//查询数据 // $sql="SELECT * FROM test"; // $results = Test::findBySql($sql)->all(); //id=1 // $results = Test::find()->where(["id"=>1])->all(); // print_r($results); //id>0 /*$results = Test::find()->where(['>','id',0])->all(); print_r($results);*/ //id>=1 and id<=2 //$results = Test::find()->where(['between','id',1,2])->all(); //echo count($results); //title like '%title%' //$results=Test::find()->where(['like','title','title'])->all(); //print_r($results); //将查询结果转换成数组 // $results=Test::find()->where(['like','title','title'])->asArray()->all(); //批量查询 foreach ($Test::find()->batch(2) as $value) { # code... } print_r($results);查看全部
-
dsf查看全部
-
$sql="select * from test where id=:id";//占位符 $result = Test::findysql($sql,array('id'=>'1'))->all();查看全部
举报
0/150
提交
取消