摘要:
不跳转代码:return $this->redirect('http://www.yiichina.com/'); 跳转代码:return $this->redirect('http://www.yiichina.com/')->send(); 或者: $this->redirect('http:/ 阅读全文
摘要:
1、样式和脚本 1.1 Yii 提供两个方法用于生成包含内联样式和脚本代码的标签。 阅读全文
摘要:
$transaction = Yii::$app->db->beginTransaction(); try{ //删除$model中的数据 $res = $model->deleteAll($cond); if(!$res) throw new \Exception('操作失败!'); //删除$m 阅读全文
摘要:
// WHERE name = 'dogstar' AND age = 18 $user->where(array('name' => 'dogstar', 'age' => 18)) // WHERE name = 'dogstar' OR age = 18 $user->or('name', ' 阅读全文
摘要:
1、http://tech.anruence.com/ 2、http://www.yiichina.com/doc/guide/2.0/input-multiple-models 阅读全文
摘要:
<?php $form = ActiveForm::begin([ 'options'=>['class' => 'form-horizontal row-border','enctype'=>"multipart/form-data"], 'fieldConfig'=>[ 'options'=>[ 阅读全文