欧美AV无码一区二区,麻豆+无码+国产在线+观看,欧美狂躁少妇XXXX高潮无码,美女扒开屁股让男人桶免费观看,极品粉嫩国产18尤物在线播放

PhpToken::is

(PHP 8)

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

說(shuō)明

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

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.

范例

示例 #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)

示例 #2 Usage with array

<?php
function isClassType(PhpToken $token): bool {
    return 
$token->is([T_CLASST_INTERFACET_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)

參見(jiàn)

  • token_name() - 獲取提供的 PHP 解析器代號的符號名稱(chēng)
欧美AV无码一区二区,麻豆+无码+国产在线+观看,欧美狂躁少妇XXXX高潮无码,美女扒开屁股让男人桶免费观看,极品粉嫩国产18尤物在线播放