File: apc_iterator.stub.php

package info (click to toggle)
php-apcu 5.1.19%2B4.0.11-3
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 1,920 kB
  • sloc: ansic: 10,965; php: 1,736; xml: 903; pascal: 5; makefile: 2
file content (36 lines) | stat: -rw-r--r-- 753 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
<?php

/** @generate-function-entries */

class APCUIterator implements Iterator {
    /** @param array|string|null $search */
    public function __construct(
        $search = null,
        int $format = APC_ITER_ALL,
        int $chunk_size = 0,
        int $list = APC_LIST_ACTIVE);

    /** @return void */
    public function rewind();

    /** @return void */
    public function next();

    /** @return bool */
    public function valid();

    /** @return string|int|false */
    public function key();

    /** @return mixed */
    public function current();

    /** @return int */
    public function getTotalHits();

    /** @return int */
    public function getTotalSize();

    /** @return int */
    public function getTotalCount();
}