array ( 0 => 'index.php', 1 => 'PHP Manual', ), 'head' => array ( 0 => 'UTF-8', 1 => 'it', ), 'this' => array ( 0 => 'phptoken.is.php', 1 => 'PhpToken::is', 2 => 'Tells whether the token is of given kind.', ), 'up' => array ( 0 => 'class.phptoken.php', 1 => 'PhpToken', ), 'prev' => array ( 0 => 'phptoken.gettokenname.php', 1 => 'PhpToken::getTokenName', ), 'next' => array ( 0 => 'phptoken.isignorable.php', 1 => 'PhpToken::isIgnorable', ), 'alternatives' => array ( ), 'source' => array ( 'lang' => 'en', 'path' => 'reference/tokenizer/phptoken/is.xml', ), 'history' => array ( ), ); $setup["toc"] = $TOC; $setup["toc_deprecated"] = $TOC_DEPRECATED; $setup["parents"] = $PARENTS; manual_setup($setup); contributors($setup); ?>

PhpToken::is

(PHP 8)

PhpToken::isTells whether the token is of given kind.

Descrizione

public PhpToken::is(int|string|array $kind): bool

Tells whether the token is of given kind.

Elenco dei parametri

kind

Either a single value to match the token's id or textual content, or an array thereof.

Valori restituiti

A boolean value whether the token is of given kind.

Esempi

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)

Vedere anche: