主頁(yè) > 知識(shí)庫(kù) > YII框架常用技巧總結(jié)

YII框架常用技巧總結(jié)

熱門標(biāo)簽:九江外呼系統(tǒng) 西區(qū)企業(yè)怎么做地圖標(biāo)注入駐 海南人工外呼系統(tǒng)有效果嗎 七魚外呼系統(tǒng)停用嗎 抖音有個(gè)地圖標(biāo)注是什么意思 保定crm外呼系統(tǒng)運(yùn)營(yíng)商 智能電話機(jī)器人排名前十名南京 阿里云400電話申請(qǐng)加工單 地下城堡2圖九地圖標(biāo)注

本文實(shí)例總結(jié)了YII框架常用技巧。分享給大家供大家參考,具體如下:

獲取當(dāng)前Controller name和action name(在控制器里面使用)

echo $this->id;
echo $this->action->id;

控制器獲取當(dāng)前模塊

$this->module->id

不生成label標(biāo)簽

// ActiveForm類
$form->field($model, '字段名')->passwordInput(['maxlength' => true])->label(false)

Yii2 獲取接口傳過(guò)來(lái)的 JSON 數(shù)據(jù):

Yii::$app->request->rawBody;

防止 SQL 和 Script 注入:

use yii\helpers\Html;
use yii\helpers\HtmlPurifier;
echo Html::encode($view_hello_str) //可以原樣顯示script>/script>代碼
echo HtmlPurifier::process($view_hello_str) //可以過(guò)濾掉script>/script>代碼

大于、小于條件查詢

// SELECT * FROM `order` WHERE `subtotal` > 200 ORDER BY `id`
$orders = $customer->getOrders()
->where(['>', 'subtotal', 200])
->orderBy('id')
->all();

搜索的時(shí)候添加條件篩選

$dataProvider = $searchModel->search(Yii::$app->request->queryParams);
// $dataProvider->query->andWhere(['pid' => 0]);
$dataProvider->query->andWhere(['>', 'pid', 0]);
//可選傳參
$dataProvider->query->andFilterWhere(['id'=>isset($id)?$id:null]);

有兩種方式獲取查詢出來(lái)的 name 為數(shù)組的集合 [name1, name2, name3]:

方式一:

return \yii\helpers\ArrayHelper::getColumn(User::find()->all(), 'name');

方式二:

return User::find()->select('name')->asArray()->column();

打印數(shù)據(jù):

// 引用命名空間
use yii\helpers\VarDumper;
// 使用
VarDumper::dump($var);
// 使用2 第二個(gè)參數(shù)是數(shù)組的深度 第三個(gè)參數(shù)是是否顯示代碼高亮(默認(rèn)不顯示)
VarDumper::dump($var, 10 ,true);die;

表單驗(yàn)證,只要需要一個(gè)參數(shù):

public function rules()
{
  return [
    [['card_id', 'card_code'], function ($attribute, $param) {//至少要一個(gè)
      if (empty($this->card_code)  empty($this->card_id)) {
        $this->addError($attribute, 'card_id/card_code至少要填一個(gè)');
      }
    }, 'skipOnEmpty' => false],
  ];
}

SQL is not null條件查詢

// ['not' => ['attribute' => null]]
//['ISNULL(`attribute`)'=>true]
$query = new Query;
$query->select('ID, City,State,StudentName')
  ->from('student')
  ->where(['IsActive' => 1])
  ->andWhere(['not', ['City' => null]])
  ->andWhere(['not', ['State' => null]])
  ->orderBy(['rand()' => SORT_DESC])
  ->limit(10);

校驗(yàn) point_template_id 在 PointTemplate 是否存在

public function rules()
{
  return [
    [['point_template_id'], 'exist',
      'targetClass' => PointTemplate::className(),
      'targetAttribute' => 'id',
      'message' => '此{(lán)attribute}不存在。'
    ],
  ];
}

Yii給必填項(xiàng)加星

div . required label:after {
  content:
  " *";
  color:
  red;
}

執(zhí)行SQL查詢并緩存結(jié)果

$styleId = Yii::$app->request->get('style');
$collection = Yii::$app->db->cache(function ($db) use ($styleId) {
  return Collection::findOne(['style_id' => $styleId]);
}, self::SECONDS_IN_MINITUE * 10);

場(chǎng)景:

數(shù)據(jù)庫(kù)有user表有個(gè)avatar_path字段用來(lái)保存用戶頭像路徑

需求: 頭像url需要通過(guò)域名http://b.com/作為基本url

目標(biāo): 提高代碼復(fù)用

此處http://b.com/可以做成一個(gè)配置

示例:

User.php

class User extends \yii\db\ActiveRecord
{
...
  public function extraFields()
  {
    $fields = parent::extraFields();
    $fields['avatar_url'] = function () {
      return empty($this->avatar_path) ? '可以設(shè)置一個(gè)默認(rèn)的頭像地址' : 'http://b.com/' . $this->avatar_path;
    };
    return $fields;
  }
...
}

ExampleController.php

class ExampleController extends \yii\web\Controller
{
  public function actionIndex()
  {
    $userModel = User::find()->one();
    $userData = $userModel->toArray([], ['avatar_url']);
    echo $userData['avatar_url']; // 輸出內(nèi)容: http://b.com/頭像路徑
  }
}

Model 里面 rules 聯(lián)合唯一規(guī)則

復(fù)制代碼 代碼如下:
[['store_id', 'member_name'], 'unique', 'targetAttribute' => ['store_id', 'member_name'], 'message' => 'The combination of Store ID and Member Name has already been taken.'],

Model多個(gè)字段一條規(guī)則不同提示

[['name', 'email', 'subject', 'body'], 'required','message'=>'{attribute} 必須'],

標(biāo)量查詢

Post::find()->select('title')->where(['user_id' => $userId])->scalar();

生成 SQL:

SELECT `title` FROM `post` WHERE `user_id` = 1

直接輸出 title 的值。

如果 select('title') 不寫的話,生成 SQL 是:

`SELECT * FROM `post` WHERE `user_id`=1`

直接輸出 id 的值

表單驗(yàn)證,去除首尾空格:

public function rules()
{
  return [[title', 'content'],'trim']];
}

單獨(dú)為某個(gè)Action關(guān)閉 Csrf 驗(yàn)證

新建一個(gè)Behavior

use Yii;
use yii\base\Behavior;
use yii\web\Controller;
class NoCsrf extends Behavior
{
  public $actions = [];
  public $controller;
  public function events()
  {
    return [Controller::EVENT_BEFORE_ACTION => 'beforeAction'];
  }
  public function beforeAction($event)
  {
    $action = $event->action->id;
    if (in_array($action, $this->actions)) {
      $this->controller->enableCsrfValidation = false;
    }
  }
}

然后在Controller中添加Behavior

public function behaviors()
{
  return [
    'csrf' => [
      'class' => NoCsrf::className(),
      'controller' => $this,
      'actions' => [
        'action - name'
      ]
    ]
  ];
}

LIKE 查詢 單邊加 %

['like', 'name', 'tester'] 會(huì)生成 name LIKE ' % tester % '。
['like', 'name', ' % tester', false] => name LIKE ' % tester'
$query = User::find()->where(['LIKE', 'name', $id . ' % ', false]);

SQL 隨機(jī)抽取十名幸運(yùn)用戶

$query = new Query;
$query->select('ID, City,State,StudentName')
  ->from('student')
  ->where(['IsActive' => 1])
  ->andWhere(['not', ['State' => null]])
  ->orderBy(['rand()' => SORT_DESC])
  ->limit(10);

關(guān)于事務(wù):

Yii::$app->db->transaction(function () {
  $order = new Order($customer);
  $order->save();
  $order->addItems($items);
});
// 這相當(dāng)于下列冗長(zhǎng)的代碼:
$transaction = Yii::$app->db->beginTransaction();
try {
  $order = new Order($customer);
  $order->save();
  $order->addItems($items);
  $transaction->commit();
} catch (\Exception $e) {
  $transaction->rollBack();
  throw $e;
}

批量插入數(shù)據(jù)

第一種方法

$model = new User();
foreach ($data as $attributes) {
  $_model = clone $model;
  $_model->setAttributes($attributes);
  $_model->save();
}

第二種方法

$model = new User();
foreach ($data as $attributes) {
  $model->isNewRecord = true;
  $model->setAttributes($attributes);
  $model->save()  $model->id = 0;
}

URL操作

獲取url中的host信息

Yii::$app->request->getHostInfo()

獲取url中的路徑信息(不包含host和參數(shù)):

Yii::$app->request->getPathInfo()

獲取不包含host信息的url(含參數(shù)):

# /public/index.php?r=newsid=1
Yii::$app->request->url

或者

Yii::$app->request->requestUri

只想獲取url中的參數(shù)部分

# r=newsid=1
Yii::$app->getRequest()->queryString;

獲取某個(gè)參數(shù)的值,比如id

Yii::$app->getRequest()->getQuery('id'); //get parameter 'id'

獲?。ǔ蛎獾模┦醉?yè)地址

# /public/index.php
Yii::$app->user->returnUrl;

獲取Referer

Yii::$app->request->headers['Referer']

或者

Yii::$app->getRequest()->getReferrer()

更多關(guān)于Yii相關(guān)內(nèi)容感興趣的讀者可查看本站專題:《Yii框架入門及常用技巧總結(jié)》、《php優(yōu)秀開(kāi)發(fā)框架總結(jié)》、《smarty模板入門基礎(chǔ)教程》、《php面向?qū)ο蟪绦蛟O(shè)計(jì)入門教程》、《php字符串(string)用法總結(jié)》、《php+mysql數(shù)據(jù)庫(kù)操作入門教程》及《php常見(jiàn)數(shù)據(jù)庫(kù)操作技巧匯總》

希望本文所述對(duì)大家基于Yii框架的PHP程序設(shè)計(jì)有所幫助。

您可能感興趣的文章:
  • PHP YII框架開(kāi)發(fā)小技巧之模型(models)中rules自定義驗(yàn)證規(guī)則
  • yii2 頁(yè)面底部加載css和js的技巧
  • Yii基于數(shù)組和對(duì)象的Model查詢技巧實(shí)例詳解
  • Yii2使用小技巧之通過(guò) Composer 添加 FontAwesome 字體資源
  • Yii使用技巧大匯總
  • yii2-GridView在開(kāi)發(fā)中常用的功能及技巧總結(jié)
  • Yii編程開(kāi)發(fā)常見(jiàn)調(diào)用技巧集錦
  • YII框架行為behaviors用法示例
  • Yii2框架實(shí)現(xiàn)數(shù)據(jù)庫(kù)常用操作總結(jié)
  • PHP的Yii框架中過(guò)濾器相關(guān)的使用總結(jié)
  • YiiFramework入門知識(shí)點(diǎn)總結(jié)(圖文教程)

標(biāo)簽:九江 涼山 甘肅 梅河口 十堰 遼陽(yáng) 韶關(guān) 昭通

巨人網(wǎng)絡(luò)通訊聲明:本文標(biāo)題《YII框架常用技巧總結(jié)》,本文關(guān)鍵詞  YII,框架,常用,技巧,總結(jié),;如發(fā)現(xiàn)本文內(nèi)容存在版權(quán)問(wèn)題,煩請(qǐng)?zhí)峁┫嚓P(guān)信息告之我們,我們將及時(shí)溝通與處理。本站內(nèi)容系統(tǒng)采集于網(wǎng)絡(luò),涉及言論、版權(quán)與本站無(wú)關(guān)。
  • 相關(guān)文章
  • 下面列出與本文章《YII框架常用技巧總結(jié)》相關(guān)的同類信息!
  • 本頁(yè)收集關(guān)于YII框架常用技巧總結(jié)的相關(guān)信息資訊供網(wǎng)民參考!
  • 推薦文章