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


PHP Token::is方法代碼示例

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


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

示例1: testIs

 function testIs()
 {
     $token = new Token('$');
     $this->assertTrue($token->is('$'));
     $this->assertTrue($token->is('$', ':', '!'));
     $this->assertTrue($token->is('!', '?', ':', '$'));
     $this->assertFalse($token->is('!', '?', ':'));
     $this->assertFalse($token->is('$!'));
     $token = new Token(T_STRING);
     $this->assertFalse($token->is(T_OPEN_TAG, T_YIELD));
     $this->assertTrue($token->is(T_STRING));
     $token = new Token(T_STRING, '"value"', null);
     $this->assertFalse($token->is(T_OPEN_TAG, T_YIELD));
     $this->assertTrue($token->is(T_CLOSE_TAG, T_STRING));
 }
開發者ID:assertchris,項目名稱:yay,代碼行數:15,代碼來源:TokenTest.php

示例2: addToken

 public function addToken(Token $token)
 {
     switch ($token->getType()) {
         // This block is basically a whitelist of token types permissible before
         // seeing a T_FUNCTION. If we hit anything else, the docblock isn't
         // attached to something we care about.
         case T_DOC_COMMENT:
             $this->docblock = $token;
             // fall through
         // fall through
         case T_WHITESPACE:
         case T_PUBLIC:
         case T_PROTECTED:
         case T_PRIVATE:
         case T_STATIC:
         case T_ABSTRACT:
             break;
         case Token::SINGLE_CHARACTER:
             if ($token->is('{')) {
                 $this->has_started = true;
                 $this->depth++;
             } elseif ($token->is('}')) {
                 $this->depth--;
             }
             break;
         case T_FUNCTION:
             $this->track = false;
             break;
         case T_STRING:
             if (!$this->has_started) {
                 $this->name = $token->getValue();
             }
             // fall through
         // fall through
         default:
             if ($this->track) {
                 $this->no_op = true;
             }
             break;
     }
     if ($this->has_started) {
         $this->body[] = $token;
     } else {
         $this->head[] = $token;
     }
     return $this;
 }
開發者ID:firehed,項目名稱:php7ize,代碼行數:47,代碼來源:Function_.php

示例3: addToken

 public function addToken(Token $token)
 {
     switch ($token->getType()) {
         case T_WHITESPACE:
             break;
         case T_VARIABLE:
             if ($this->current_th) {
             } else {
                 $this->addProvidedTypehint();
             }
             break;
         default:
             $this->current_th .= $token;
             break;
     }
     $this->tokens[] = $token;
     if ($token->is(',')) {
         $this->argno++;
         $this->current_th = '';
     }
 }
開發者ID:firehed,項目名稱:php7ize,代碼行數:21,代碼來源:ArgumentList.php

示例4: compareType

 /**
  * @internal
  */
 protected function compareType(Token $token, $type)
 {
     if (!is_array($type)) {
         $type = array($type);
     }
     foreach ($type as $name) {
         if ($token->is($name)) {
             return true;
         }
     }
     return false;
 }
開發者ID:kzykhys,項目名稱:php-class-generator,代碼行數:15,代碼來源:TokenStream.php


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