當前位置: 首頁>>代碼示例>>PHP>>正文


PHP add::current_controller方法代碼示例

本文整理匯總了PHP中add::current_controller方法的典型用法代碼示例。如果您正苦於以下問題:PHP add::current_controller方法的具體用法?PHP add::current_controller怎麽用?PHP add::current_controller使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在add的用法示例。


在下文中一共展示了add::current_controller方法的6個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。

示例1: var_dump

 /**
  * XMP Var Dump
  * var_dump with <xmp>
  * @author albertdiones@gmail.com
  * @since ADD MVC 0.0
  */
 static function var_dump()
 {
     $args = func_get_args();
     if (!$args) {
         $args[0] = static::get_declared_globals();
     }
     $var = self::return_var_dump($args);
     if (add::current_controller()->content_type() == 'text/plain') {
         $output = "\r\nFile Line:" . self::caller_file_line() . "\r\n" . $var . "\r\n";
     } else {
         $output = "<div style='clear:both'><b>" . self::caller_file_line() . "</b><xmp>" . $var . "</xmp></div>";
     }
     self::restricted_echo($output);
     return $args[0];
 }
開發者ID:google-code-backups,項目名稱:add-mvc-framework,代碼行數:21,代碼來源:add_debug.class.php

示例2: content_type

 /**
  * content_type()
  *
  * @since ADD MVC 0.8
  */
 public static function content_type($new_content_type = null)
 {
     if ($new_content_type == 'text/plain') {
         ini_set('html_errors', 0);
     }
     return add::current_controller()->content_type($new_content_type);
 }
開發者ID:google-code-backups,項目名稱:add-mvc-framework,代碼行數:12,代碼來源:add.class.php

示例3: canonicalize_path

 /**
  * canonicalize URL to the current controller
  *
  * @since ADD MVC 0.5
  */
 static function canonicalize_path()
 {
     if (add::current_controller()->path() != "{$_GET['add_mvc_path']}") {
         add::current_controller()->redirect();
     }
 }
開發者ID:google-code-backups,項目名稱:add-mvc-framework,代碼行數:11,代碼來源:add.class.php

示例4:

<?php

/**
 * Created by PhpStorm.
 * @author albert
 * Date: 1/18/16
 * Time: 3:41 AM
 */
require 'add_configure.php';
$current_controller = add::current_controller();
$current_controller->execute();
開發者ID:albertdiones,項目名稱:locust-mule,代碼行數:11,代碼來源:add.php

示例5: date_default_timezone_set

<?php

require '../config.php';
require $C->add_dir . '/init.php';
date_default_timezone_set('UTC');
$G_errors = array();
session_start();
session_set_cookie_params(3600, $C->path, $C->domain, true);
#add::canonicalize_path();
add::current_controller()->page();
開發者ID:google-code-backups,項目名稱:add-mvc-framework,代碼行數:10,代碼來源:add.php

示例6: nonicalize_path

<?php

require 'add_configure.php';
#add::ca nonicalize_path();
add::current_controller()->execute();
開發者ID:google-code-backups,項目名稱:add-mvc-framework,代碼行數:5,代碼來源:add.php


注:本文中的add::current_controller方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。