本文整理匯總了PHP中Symfony\CS\Tokenizer\Token::equals方法的典型用法代碼示例。如果您正苦於以下問題:PHP Token::equals方法的具體用法?PHP Token::equals怎麽用?PHP Token::equals使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類Symfony\CS\Tokenizer\Token
的用法示例。
在下文中一共展示了Token::equals方法的3個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。
示例1: detectBlockType
/**
* Detect type of block.
*
* @param Token $token token
*
* @return null|array array with 'type' and 'isStart' keys or null if not found
*/
public static function detectBlockType(Token $token)
{
foreach (self::getBlockEdgeDefinitions() as $type => $definition) {
if ($token->equals($definition['start'])) {
return array('type' => $type, 'isStart' => true);
}
if ($token->equals($definition['end'])) {
return array('type' => $type, 'isStart' => false);
}
}
}
示例2: transformIntoDynamicVarBraces
private function transformIntoDynamicVarBraces(Tokens $tokens, Token $token, $index)
{
if (!$token->equals('$')) {
return;
}
$openIndex = $tokens->getNextMeaningfulToken($index);
if (null === $openIndex) {
return;
}
$openToken = $tokens[$openIndex];
if (!$openToken->equals('{')) {
return;
}
$closeIndex = $tokens->findBlockEnd(Tokens::BLOCK_TYPE_CURLY_BRACE, $openIndex);
$closeToken = $tokens[$closeIndex];
$openToken->override(array(CT_DYNAMIC_VAR_BRACE_OPEN, '{'));
$closeToken->override(array(CT_DYNAMIC_VAR_BRACE_CLOSE, '}'));
}
示例3: testEquals
/**
* @dataProvider provideEquals
*/
public function testEquals(Token $token, $equals, $other, $caseSensitive = true)
{
$this->assertSame($equals, $token->equals($other, $caseSensitive));
}