• 首页
  • vue
  • TypeScript
  • JavaScript
  • scss
  • css3
  • html5
  • php
  • MySQL
  • redis
  • jQuery
  • wincache_ucache_exists()

    (PECL wincache >= 1.1.0)

    Checks if a variable exists in the user cache

    说明

    wincache_ucache_exists(string $key): bool

    Checks if a variable with the$keyexists in the user cache or not.

    参数

    $key

    The$keythat was used to store the variable in the cache.$keyis case sensitive.

    返回值

    Returns TRUE if variable with the$keyexitsts, otherwise returns FALSE.

    范例

    Example #1 Using wincache_ucache_exists()

    <?php
    if (!wincache_ucache_exists('green'))
        wincache_ucache_set('green', 1);
    var_dump(wincache_ucache_exists('green'));
    ?>
    

    以上例程会输出:

    bool(true)
    

    参见