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


PHP ReflectionMethod::getNamespaceName方法代碼示例

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


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

示例1: extractTagsFromComment

 /**
  * @param string $comment
  * @param string $current_tag
  * @param \ReflectionMethod|\ReflectionClass $reflection
  * @return array
  */
 private function extractTagsFromComment($comment, $current_tag = 'description', $reflection)
 {
     $ns = $reflection instanceof \ReflectionClass ? $reflection->getNamespaceName() : $reflection->getDeclaringClass()->getNamespaceName();
     $tags = array($current_tag => '');
     foreach (explode(PHP_EOL, $comment) as $line) {
         if ($current_tag != 'example') {
             $line = trim($line);
         }
         $words = explode(' ', trim($line));
         if (strpos($words[0], '@') === false) {
             // Append to tag
             $joinWith = $current_tag == 'example' ? PHP_EOL : ' ';
             $tags[$current_tag] .= $joinWith . $line;
         } elseif ($words[0] == '@param') {
             // Get parameter declaration
             if ($paramData = $this->figureOutParamDeclaration($words, $ns)) {
                 list($name, $data) = $paramData;
                 $tags['params'][$name] = $data;
             }
         } else {
             // Start new tag
             $current_tag = substr($words[0], 1);
             array_splice($words, 0, 1);
             if (empty($tags[$current_tag])) {
                 $tags[$current_tag] = '';
             }
             $tags[$current_tag] .= trim(join(' ', $words));
         }
     }
     foreach ($tags as $name => $val) {
         if (is_array($val)) {
             foreach ($val as $subName => $subVal) {
                 if (is_string($subVal)) {
                     $tags[$name][$subName] = trim($subVal);
                 }
             }
         } else {
             $tags[$name] = trim($val);
         }
     }
     return $tags;
 }
開發者ID:jarednova,項目名稱:PHP-Markdown-Documentation-Generator,代碼行數:48,代碼來源:Reflector.php

示例2: test

    $staticX++;
    $x = $staticX;
    return $x;
}
class Test
{
    public function test()
    {
    }
}
$rf = new \ReflectionFunction('\\foo\\bar\\f');
print "--- getShortName(\"\\foo\\bar\\f\") ---\n";
var_dump($rf->getShortName());
print "\n";
print "--- getNamespaceName(\"\\foo\\bar\\f\") ---\n";
var_dump($rf->getNamespaceName());
print "\n";
$rf = new \ReflectionMethod('\\foo\\bar\\Test', 'test');
print "--- getShortName(\"\\foo\\bar\\Test::test\") ---\n";
var_dump($rf->getShortName());
print "\n";
print "--- getNamespaceName(\"\\foo\\bar\\Test::test\") ---\n";
var_dump($rf->getNamespaceName());
print "\n";
$rf = new \ReflectionFunction('\\strlen');
print "--- getShortName(\"strlen\") ---\n";
var_dump($rf->getShortName());
print "\n";
print "--- getNamespaceName(\"strlen\") ---\n";
var_dump($rf->getNamespaceName());
print "\n";
開發者ID:badlamer,項目名稱:hhvm,代碼行數:31,代碼來源:ReflectionFunction_getShortName.php

示例3: getNameSpace

 /**
  * @param \ReflectionClass|\ReflectionMethod $reflection
  * @return string
  */
 private function getNameSpace($reflection)
 {
     if ($reflection instanceof \ReflectionClass) {
         return $reflection->getNamespaceName();
     } else {
         return $reflection->getDeclaringClass()->getNamespaceName();
     }
 }
開發者ID:parkerj,項目名稱:eduTrac-SIS,代碼行數:12,代碼來源:DocInfoExtractor.php


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