ホームページ >バックエンド開発 >PHPチュートリアル >yii templates_PHP チュートリアルでよく使用される変数の概要
yii テンプレートでよく使われるいくつかの変数のまとめ。
そのようなURLがあります: http://www.phpernote.com/demos/helloworld/index.php/xxx/xxx
以下の方法で取得した値はそれぞれ次のとおりです。
ドメイン名を除くホームページのアドレスecho Yii::app()->user->returnUrl; // '/demos/helloworld/index.php'
現在のページのURL
echo Yii::app()->request->url; // '/demos/helloworld/index.php/xxx/xxx'
現在のドメイン名
echo Yii::app()->request->hostInfo; // 'http://www.phpernote.com/'
ルートURL
echo Yii::app()->request->baseUrl; // '/demos/helloworld'
ドメイン名を除くルートディレクトリアドレス
echo Yii::app()->homeUrl; // '/demos/helloworld/index.php'
URLアドレスを作成
echo Yii::app()->createUrl('Site'); // /demos/helloworld/index.php?r=Site
ドメイン名を除くURL
Yii::app()->リクエスト->getUrl();
前のページの URL にジャンプします $this->redirect(Yii::app()->request->urlReferrer);
現在のページ URL にジャンプします Yii::app()->request->redirect(Yii::app()->user->returnUrl);
URL アドレスを作成 Yii::app()->createUrl('/',array('param1'=>'val')); // /demos/helloworld/index.php
レンダリングビュー(レイアウト) $this->render('view', array('attribute1'=>'value1','attribute2'=>'value2'));
ページに移動 $this->redirect(array('route','attribute1'=>'value1','attribute2'=>'value2'));
ウィジェットを作成 $this->beginWidget(string $className, array $properties=array ( ))
$this->endWidget();
部分レンダリング renderPartial('view', array('attribute1'=>'value1','attribute2'=>'value2'));
Framework/web/js/source の js、registerCoreScriptkey で呼び出されるファイルは、framework/web/js/packages.php リストで確認できます
ビュー内の現在のコントローラーの ID を取得します: Yii::app()->getController()->id;
ビュー内の現在のアクションの ID を取得します: Yii::app()->getController()->getAction()->id;
yii は IP アドレスを取得します: Yii::app()->request->userHostAddress;
Yii は送信メソッドを決定します: Yii::app()->request->isPostRequest
現在のドメイン名を取得します: Yii::app()->request->hostInfo
返される前のページの URL を取得します: Yii::app()->request->urlReferrer;
現在の URL を取得します: Yii::app()->request->url;
現在のホーム URL を取得します: Yii::app()->homeUrl
現在のリターン URL を取得します: Yii::app()->user->returnUrl
プロジェクトパス: dirname(Yii::app()->BasePath)
1: Yii フレームワークによって定義された名前空間定数
system: Yii フレームワーク ディレクトリを指します
zii: Zii ライブラリ ディレクトリを指します。
application: protectedアプリケーションのベース ディレクトリを指します。
webroot: エントリ スクリプト ファイルを含むディレクトリを指します。ext : すべてのサードパーティ拡張機能を含むディレクトリを指します
使用法: Yii::getPathOfAlias('webroot')
2: 現在の完全なパスを取得します
Yii::getFrameworkPath() :YII フレームワーク パス
3: メタ情報を挿入します
Yii::app()->clientScript->registerMetaTag('説明','説明');
Yii::app()->clientScript->registerMetaTag('author','author');
例:
CSS ファイルまたは JavaScript ファイルをコントローラーに追加します
Yii::app()->clientScript->registerScriptFile(Yii::app()->baseUrl.'/css/my.js');
ビュー内の現在のコントローラーの ID を取得する方法
Yii::app()->getController()->id;
Yii::app()->getController()->getAction()->id;
Yii が IP アドレスを取得します
Yii::app()->リクエスト->ユーザーホストアドレス;
投稿方法はYiiが決定しますYii::app()->リクエスト->isPostRequest
保護されたディレクトリの物理パスを取得します Yii::app()->basePath;
プロジェクトパス dirname(Yii::app()->basePath)