(PHP 8)
PhpToken::is — Tells whether the token is of given kind.
Tells whether the token is of given kind
.
kind
Either a single value to match the token's id or textual content, or an array thereof.
A boolean value whether the token is of given kind.
Example #1 PhpToken::is() example
<?php
$token = new PhpToken(T_ECHO, 'echo');
var_dump($token->is(T_ECHO)); / -> bool(true)
var_dump($token->is('echo')); / -> bool(true)
var_dump($token->is(T_FOREACH)); / -> bool(false)
var_dump($token->is('foreach')); / -> bool(false)
Example #2 Usage with array
<?php
function isClassType(PhpToken $token): bool {
return $token->is([T_CLASS, T_INTERFACE, T_TRAIT]);
}
$interface = new PhpToken(T_INTERFACE, 'interface');
var_dump(isClassType($interface)); / -> bool(true)
$function = new PhpToken(T_FUNCTION, 'function');
var_dump(isClassType($function)); / -> bool(false)
Follow Lee on X/Twitter - Father, Husband, Serial builder creating AI, crypto, games & web tools. We are friends :) AI Will Come To Life!
Check out: eBank.nz (Art Generator) |
Netwrck.com (AI Tools) |
Text-Generator.io (AI API) |
BitBank.nz (Crypto AI) |
ReadingTime (Kids Reading) |
RewordGame |
BigMultiplayerChess |
WebFiddle |
How.nz |
Helix AI Assistant