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


PHP ReflectionMethod::__toString方法代碼示例

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


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

示例1: __toString

 /**
  * Returns a string representation
  *
  * @return string String representation
  */
 public function __toString()
 {
     if ($this->reflectionSource instanceof ReflectionMethod) {
         return $this->reflectionSource->__toString();
     } else {
         return parent::__toString();
     }
 }
開發者ID:naderman,項目名稱:ezc-reflection,代碼行數:13,代碼來源:method.php

示例2: reflectMethod

function reflectMethod($class, $method)
{
    $methodInfo = new ReflectionMethod($class, $method);
    echo "**********************************\n";
    echo "Reflecting on method {$class}::{$method}()\n\n";
    echo "__toString():\n";
    var_dump($methodInfo->__toString());
    echo "\nexport():\n";
    var_dump(ReflectionMethod::export($class, $method, true));
    echo "\n**********************************\n";
}
開發者ID:badlamer,項目名稱:hhvm,代碼行數:11,代碼來源:ReflectionMethod_basic2.php

示例3: __toString

 public function __toString()
 {
     return parent::__toString();
 }
開發者ID:brikou,項目名稱:zend_code,代碼行數:4,代碼來源:MethodReflection.php

示例4: module

 /**
  * 執行模塊
  * @access public
  * @param array $result 模塊/控製器/操作
  * @param array $config 配置參數
  * @param bool  $convert 是否自動轉換控製器和操作名
  * @return mixed
  */
 public static function module($result, $config, $convert = null)
 {
     if (is_string($result)) {
         $result = explode('/', $result);
     }
     $request = Request::instance();
     if ($config['app_multi_module']) {
         // 多模塊部署
         $module = strip_tags(strtolower($result[0] ?: $config['default_module']));
         $bind = Route::getBind('module');
         $available = false;
         if ($bind) {
             // 綁定模塊
             list($bindModule) = explode('/', $bind);
             if ($module == $bindModule) {
                 $available = true;
             }
         } elseif (!in_array($module, $config['deny_module_list']) && is_dir(APP_PATH . $module)) {
             $available = true;
         }
         // 模塊初始化
         if ($module && $available) {
             // 初始化模塊
             $request->module($module);
             $config = self::init($module);
         } else {
             throw new HttpException(404, 'module not exists:' . $module);
         }
     } else {
         // 單一模塊部署
         $module = '';
         $request->module($module);
     }
     // 當前模塊路徑
     App::$modulePath = APP_PATH . ($module ? $module . DS : '');
     // 是否自動轉換控製器和操作名
     $convert = is_bool($convert) ? $convert : $config['url_convert'];
     // 獲取控製器名
     $controller = strip_tags($result[1] ?: $config['default_controller']);
     $controller = $convert ? strtolower($controller) : $controller;
     // 獲取操作名
     $actionName = strip_tags($result[2] ?: $config['default_action']);
     $actionName = $convert ? strtolower($actionName) : $actionName;
     // 設置當前請求的控製器、操作
     $request->controller($controller)->action($actionName);
     // 監聽module_init
     Hook::listen('module_init', $request);
     try {
         $instance = Loader::controller($controller, $config['url_controller_layer'], $config['controller_suffix'], $config['empty_controller']);
         if (is_null($instance)) {
             throw new HttpException(404, 'controller not exists:' . $controller);
         }
         // 獲取當前操作名
         $action = $actionName . $config['action_suffix'];
         if (!preg_match('/^[A-Za-z](\\w)*$/', $action)) {
             // 非法操作
             throw new \ReflectionException('illegal action name:' . $actionName);
         }
         // 執行操作方法
         $call = [$instance, $action];
         Hook::listen('action_begin', $call);
         $data = self::invokeMethod($call);
     } catch (\ReflectionException $e) {
         // 操作不存在
         if (method_exists($instance, '_empty')) {
             $method = new \ReflectionMethod($instance, '_empty');
             $data = $method->invokeArgs($instance, [$action, '']);
             self::$debug && Log::record('[ RUN ] ' . $method->__toString(), 'info');
         } else {
             throw new HttpException(404, 'method not exists:' . (new \ReflectionClass($instance))->getName() . '->' . $action);
         }
     }
     return $data;
 }
開發者ID:GDdark,項目名稱:cici,代碼行數:82,代碼來源:App.php

示例5: describeMethod

 public function describeMethod(ReflectionMethod $method, $long = false)
 {
     $this->write(" " . $method->name . "\t-");
     $documentation = $method->getDocComment();
     if (!$documentation) {
         $documentation = "No documentation found! Read the source!\n";
         $documentation .= $method->__toString();
     }
     $doc_lines = explode("\n", $documentation);
     foreach ($doc_lines as $line) {
         $line = preg_replace("/^\\s*[\\/\\*]+/", '', $line);
         if ($line) {
             $this->write(" {$line}\n");
             if (!$long) {
                 return;
             }
         }
     }
 }
開發者ID:MrYogi,項目名稱:hasoffers-promotional-platform,代碼行數:19,代碼來源:Script.php


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