検索

phrase: max: clip:
target: order:
Results of 21 - 30 of about 70 for Controller (0.002 sec.)
Yet Another Framework (Yaf) 8078
« yaml_parse はじめに » PHP Manual その他の基本モジュール Yet Another Framework (Yaf) Yet Anothe ... the default action name Yaf_Dispatcher::getDefaultController — Retrive the default controller name Yaf_Dispatch ... トのアクション名を変更する Yaf_Dispatcher::setDefaultController — デフォルトのコントローラ名を変更する Yaf_Dispatc ... す Yaf_Config_Simple::valid — The valid purpose Yaf_Controller_Abstract — Yaf_Controller_Abstract クラス Yaf_Cont ... roller_Abstract::__construct — Yaf_Controller_Abstract のコンストラクタ Yaf_Controller_Abstract: ...
https://man.plustar.jp/php/book.yaf.html - [similar]
Yaf_Exception_LoadFailed_Controller クラス 7810
« Yaf_Exception_LoadFailed_Module Yaf_Exception_LoadFailed_Action » PHP Manual Yaf Yaf_Exception ... _LoadFailed_Controller クラス Yaf_Exception_LoadFailed_Controller クラス ... はじめに クラス概要 class Yaf_Exception_LoadFailed_Controller extends Yaf_Exception_LoadFailed { /* プロパティ * ... d } 関連キーワード: Yaf , Exception , LoadFailed , Controller , クラス , メソッド , Module , 概要 , extends , 継 ...
https://man.plustar.jp/php/class.yaf-exception-loadfailed-controller.html - [similar]
Yaf_Route_Rewrite のコンストラクタ 7584
« Yaf_Route_Rewrite::assemble Yaf_Route_Rewrite::route » PHP Manual Yaf_Route_Rewrite Yaf_Route_ ... " , //match request uri leading "/product" array( 'controller' => "product" , //route to product controller, ), ... /bar * の場合はこのような結果になります */ array( "controller" => "product", "module" => "index", //(default) "a ... d" , //match only /user/list/?/ "route" => array( 'controller' => "user" , //route to user controller, 'action' ... t/22 * の場合はこのような結果になります */ array( "controller" => "user", "action" => "list", "module" => "index ...
https://man.plustar.jp/php/yaf-route-rewrite.construct.html - [similar]
Yaf_Route_Simple のコンストラクタ 7556
« Yaf_Route_Simple::assemble Yaf_Route_Simple::route » PHP Manual Yaf_Route_Simple Yaf_Route_Sim ... imple::__construct ( string $module_name , string $controller_name , string $action_name ) Yaf_Route_Simple は、 ... ます。 パラメータ module_name モジュール情報のキー名 controller_name コントローラー情報のキー名 action_name アクシ ... の例 <?php $route = new Yaf_Route_Simple ( "m" , "controller" , "act" ); Yaf_Router :: getInstance ()-> addRout ... ute() example Request: http://yourdomain.com/path/?controller=a&act=b => module = default(index), controller = a ...
https://man.plustar.jp/php/yaf-route-simple.construct.html - [similar]
Yaf_Route_Regex のコンストラクタ 7260
« Yaf_Route_Regex::assemble Yaf_Route_Regex::route » PHP Manual Yaf_Route_Regex Yaf_Route_Regex ... " , //match request uri leading "/product" array( 'controller' => "product" , //route to product controller, ), ... " , //match request uri leading "/product" array( 'controller' => ":name" , // route to :name, which is $1 in th ... e match result as controller name ), array( 1 => "name" , // now you can call $ ... " , //match request uri leading "/product" array( 'controller' => ":name" , // route to :name, // which is named ...
https://man.plustar.jp/php/yaf-route-regex.construct.html - [similar]
例外のキャッチのオン/オフを切り替える 7189
« Yaf_Dispatcher::autoRender Yaf_Dispatcher::__construct » PHP Manual Yaf_Dispatcher 例外のキャッ ... atcher.catchException で有効にする) と、 もし ErrorController::error を定義していれば キャッチしなかった例外はす ... べて ErrorController::error に送られます。 パラメータ flag bool 戻り値 ... spatcher::catchException() の例 /* 次のような ErrorController を定義しているものとします */ <?php class ErrorCon ... troller extends Yaf_Controller_Abstract { /** * Yaf_Request_Abstract::getExceptio ...
https://man.plustar.jp/php/yaf-dispatcher.catchexception.html - [similar]
Yaf_Router クラス 7091
« Yaf_Route_Rewrite::route Yaf_Router::addConfig » PHP Manual Yaf Yaf_Router クラス Yaf_Router ク ... ルトルート Yaf_Route_Static が用意されており、これは controller/action 形式の URI にマッチします。 さらに、モジュー ... パス要素として指定できます。この場合の URI は module/controller/action 形式になります。 また、追加のパラメータを U ... RI に追記できるようになっています。つまり controller/action/var1/value1/var2/value2 といった形式です。 ... ,Blog", ), ); コントローラのみ http://example/news controller == news アクションのみ (php.ini で yaf.action_pref ...
https://man.plustar.jp/php/class.yaf-router.html - [similar]
Yaf_Route_Map クラス 6936
« Yaf_Route_Interface::route Yaf_Route_Map::assemble » PHP Manual Yaf Yaf_Route_Map クラス Yaf_R ... ータで決まります)。 その規則は次のとおりです。 A => controller A. A/B/C => controller A_B_C. A/B/C/D/E => control ... iter ; /* メソッド */ public __construct ( string $controller_prefer = false , string $delimiter = "" ) public a ... キーワード: Yaf , Route , Map , クラス , construct , controller , route , string , assemble , delimiter ...
https://man.plustar.jp/php/class.yaf-route-map.html - [similar]
URL を組み立てる 6837
« Yaf_Route_Regex Yaf_Route_Regex::__construct » PHP Manual Yaf_Route_Regex URL を組み立てる Yaf ... te_Regex ( "#^/product/([^/]+)/([^/])+#" , array( 'controller' => "product" , //route to product controller, ), ... )-> assemble ( array( ':m' => 'module' , ':c' => 'controller' , ':a' => 'action' ), array( 'tkey1' => 'tval1' , ... たとえば以下のようになります。 string(49) "/module/controller/action?tkey1=tval1&tkey2=tval2" 関連キーワード: Ya ...
https://man.plustar.jp/php/yaf-route-regex.assemble.html - [similar]
デフォルトのコントローラ名を変更する 6767
« Yaf_Dispatcher::setDefaultAction Yaf_Dispatcher::setDefaultModule » PHP Manual Yaf_Dispatcher ... のコントローラ名を変更する Yaf_Dispatcher::setDefaultController (Yaf >=1.0.0) Yaf_Dispatcher::setDefaultController ... ラ名を変更する 説明 public Yaf_Dispatcher::setDefaultController ( string $controller ): Yaf_Dispatcher パラメータ ... ローラ , 変更 , Dispatcher , デフォルト , setDefaultController , controller , setDefaultAction , setDefaultModule ...
https://man.plustar.jp/php/yaf-dispatcher.setdefaultcontroller.html - [similar]
PREV 1 2 3 4 5 6 7 NEXT