91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

全局函數怎么在Yii中使用

發布時間:2020-12-30 15:48:43 來源:億速云 閱讀:124 作者:Leah 欄目:開發技術

這期內容當中小編將會給大家帶來有關全局函數怎么在Yii中使用,文章內容豐富且以專業的角度為大家分析和敘述,閱讀完這篇文章希望大家可以有所收獲。

由于YII致力于完美的整合第三方庫,它并沒有定義任何全局函數。yii中的每一個應用都需要全類別和對象范圍。

例如,Yii::app()->user;Yii::app()->params['name'];等等。我們可以自行設定全局函數,使得代碼看起來更加簡潔易用。

我們可以保存在globals.php在protected/config目錄下。然后,在入口腳本index.php中,定義如下內容:

$globals=dirname(__FILE__).'/protected/config/globals.php';
...
require_once($yii);
require_once($globals);

現在我們可以在應用的任何地方使用我們的全局函數,例如可以使用user()代替Yii::app()->user。注:如果你打算發布一個可重用的組件,請不要組件中使用全局函數,在不同的應用配置中,可能導致無法使用。同時,也應注意與第三方庫的沖突,可考慮對每個函數前加上自己的前綴,已做區分,例如框架核心均已C為前綴。

下面是代碼包含最常用的一些快捷功能。如還需其他,請自行添加。

/**
* This is the shortcut to DIRECTORY_SEPARATOR
*/
defined('DS') or define('DS', DIRECTORY_SEPARATOR);
/**
* This is the shortcut to Yii::app()
*/
function app() {
  return Yii: :app();
}
/**
* This is the shortcut to Yii::app()->clientScript
*/
function cs() {
  // You could also call the client script instance via Yii::app()->clientScript
  // But this is faster
  return Yii: :app() - >getClientScript();
}
/**
* This is the shortcut to Yii::app()->user.
*/
function user() {
  return Yii: :app() - >getUser();
}
/**
* This is the shortcut to Yii::app()->createUrl()
*/
function url($route, $params = array(), $ampersand = '&') {
  return Yii: :app() - >createUrl($route, $params, $ampersand);
}
/**
* This is the shortcut to CHtml::encode
*/
function h($text) {
  return htmlspecialchars($text, ENT_QUOTES, Yii: :app() - >charset);
}
/**
* This is the shortcut to CHtml::link()
*/
function l($text, $url = '#', $htmlOptions = array()) {
  return CHtml: :link($text, $url, $htmlOptions);
}
/**
* This is the shortcut to Yii::t() with default category = 'stay'
*/
function t($message, $category = 'stay', $params = array(), $source = null, $language = null) {
  return Yii: :t($category, $message, $params, $source, $language);
}
/**
* This is the shortcut to Yii::app()->request->baseUrl
* If the parameter is given, it will be returned and prefixed with the app baseUrl.
*/
function bu($url = null) {
  static $baseUrl;
  if ($baseUrl === null) $baseUrl = Yii: :app() - >getRequest() - >getBaseUrl();
  return $url === null ? $baseUrl: $baseUrl.'/'.ltrim($url, '/');
}
/**
* Returns the named application parameter.
* This is the shortcut to Yii::app()->params[$name].
*/
function param($name) {
  return Yii: :app() - >params[$name];
}
/**
* A useful one that I use in development is the following
* which dumps the target with syntax highlighting on by default
*/
function dump($target) {
  return CVarDumper: :dump($target, 10, true);
}

上述就是小編為大家分享的全局函數怎么在Yii中使用了,如果剛好有類似的疑惑,不妨參照上述分析進行理解。如果想知道更多相關知識,歡迎關注億速云行業資訊頻道。

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

yii
AI

霍州市| 噶尔县| 东兰县| 阿拉善左旗| 惠水县| 陇川县| 从化市| 萝北县| 叶城县| 柳河县| 垫江县| 泰宁县| 林芝县| 商河县| 本溪市| 克东县| 衡南县| 陆河县| 松江区| 剑河县| 正阳县| 南丰县| 广灵县| 邯郸县| 金堂县| 措美县| 花莲市| 房山区| 营口市| 芜湖市| 石城县| 九龙坡区| 荣成市| 包头市| 辽宁省| 湛江市| 颍上县| 延安市| 鄂州市| 桐梓县| 容城县|