summaryrefslogtreecommitdiffstats
path: root/REFLECTION
diff options
context:
space:
mode:
Diffstat (limited to 'REFLECTION')
-rw-r--r--REFLECTION158
1 files changed, 90 insertions, 68 deletions
diff --git a/REFLECTION b/REFLECTION
index 28b7652..1c3f326 100644
--- a/REFLECTION
+++ b/REFLECTION
@@ -1,4 +1,4 @@
-Extension [ <persistent> extension #74 apcu version 5.1.18 ] {
+Extension [ <persistent> extension #68 apcu version 5.1.23 ] {
- INI {
Entry [ apc.enabled <SYSTEM> ]
@@ -23,7 +23,7 @@ Extension [ <persistent> extension #74 apcu version 5.1.18 ] {
Current = '0'
}
Entry [ apc.mmap_file_mask <SYSTEM> ]
- Current = '/tmp/apc.WBmQ7j'
+ Current = '/tmp/apc.XXXXXX'
}
Entry [ apc.enable_cli <SYSTEM> ]
Current = '1'
@@ -38,7 +38,7 @@ Extension [ <persistent> extension #74 apcu version 5.1.18 ] {
Current = '0'
}
Entry [ apc.use_request_time <ALL> ]
- Current = '1'
+ Current = '0'
}
Entry [ apc.serializer <SYSTEM> ]
Current = 'php'
@@ -46,126 +46,140 @@ Extension [ <persistent> extension #74 apcu version 5.1.18 ] {
}
- Constants [16] {
- Constant [ integer ] { 139698354347520 }
- Constant [ integer APC_LIST_ACTIVE ] { 1 }
- Constant [ integer APC_LIST_DELETED ] { 2 }
- Constant [ integer APC_ITER_TYPE ] { 1 }
- Constant [ integer APC_ITER_KEY ] { 2 }
- Constant [ integer APC_ITER_VALUE ] { 4 }
- Constant [ integer APC_ITER_NUM_HITS ] { 8 }
- Constant [ integer APC_ITER_MTIME ] { 16 }
- Constant [ integer APC_ITER_CTIME ] { 32 }
- Constant [ integer APC_ITER_DTIME ] { 64 }
- Constant [ integer APC_ITER_ATIME ] { 128 }
- Constant [ integer APC_ITER_REFCOUNT ] { 256 }
- Constant [ integer APC_ITER_MEM_SIZE ] { 512 }
- Constant [ integer APC_ITER_TTL ] { 1024 }
- Constant [ integer APC_ITER_NONE ] { 0 }
- Constant [ integer APC_ITER_ALL ] { 4294967295 }
+ Constant [ int ] { 139777182917712 }
+ Constant [ int APC_LIST_ACTIVE ] { 1 }
+ Constant [ int APC_LIST_DELETED ] { 2 }
+ Constant [ int APC_ITER_TYPE ] { 1 }
+ Constant [ int APC_ITER_KEY ] { 2 }
+ Constant [ int APC_ITER_VALUE ] { 4 }
+ Constant [ int APC_ITER_NUM_HITS ] { 8 }
+ Constant [ int APC_ITER_MTIME ] { 16 }
+ Constant [ int APC_ITER_CTIME ] { 32 }
+ Constant [ int APC_ITER_DTIME ] { 64 }
+ Constant [ int APC_ITER_ATIME ] { 128 }
+ Constant [ int APC_ITER_REFCOUNT ] { 256 }
+ Constant [ int APC_ITER_MEM_SIZE ] { 512 }
+ Constant [ int APC_ITER_TTL ] { 1024 }
+ Constant [ int APC_ITER_NONE ] { 0 }
+ Constant [ int APC_ITER_ALL ] { 4294967295 }
}
- Functions {
- Function [ <internal:apcu> function apcu_cache_info ] {
-
- - Parameters [1] {
- Parameter #0 [ <optional> $limited ]
- }
- }
Function [ <internal:apcu> function apcu_clear_cache ] {
- Parameters [0] {
}
+ - Return [ bool ]
}
- Function [ <internal:apcu> function apcu_sma_info ] {
+ Function [ <internal:apcu> function apcu_cache_info ] {
- Parameters [1] {
- Parameter #0 [ <optional> $limited ]
+ Parameter #0 [ <optional> bool $limited = false ]
}
+ - Return [ array|false ]
}
Function [ <internal:apcu> function apcu_key_info ] {
- Parameters [1] {
- Parameter #0 [ <required> $key ]
+ Parameter #0 [ <required> string $key ]
}
+ - Return [ ?array ]
+ }
+ Function [ <internal:apcu> function apcu_sma_info ] {
+
+ - Parameters [1] {
+ Parameter #0 [ <optional> bool $limited = false ]
+ }
+ - Return [ array|false ]
}
Function [ <internal:apcu> function apcu_enabled ] {
- Parameters [0] {
}
+ - Return [ bool ]
}
Function [ <internal:apcu> function apcu_store ] {
- Parameters [3] {
Parameter #0 [ <required> $key ]
- Parameter #1 [ <optional> $var ]
- Parameter #2 [ <optional> $ttl ]
- }
- }
- Function [ <internal:apcu> function apcu_fetch ] {
-
- - Parameters [2] {
- Parameter #0 [ <required> $key ]
- Parameter #1 [ <optional> &$success ]
- }
- }
- Function [ <internal:apcu> function apcu_delete ] {
-
- - Parameters [1] {
- Parameter #0 [ <required> $keys ]
+ Parameter #1 [ <optional> mixed $value = <default> ]
+ Parameter #2 [ <optional> int $ttl = 0 ]
}
+ - Return [ array|bool ]
}
Function [ <internal:apcu> function apcu_add ] {
- Parameters [3] {
Parameter #0 [ <required> $key ]
- Parameter #1 [ <optional> $var ]
- Parameter #2 [ <optional> $ttl ]
+ Parameter #1 [ <optional> mixed $value = <default> ]
+ Parameter #2 [ <optional> int $ttl = 0 ]
}
+ - Return [ array|bool ]
}
Function [ <internal:apcu> function apcu_inc ] {
- Parameters [4] {
- Parameter #0 [ <required> $key ]
- Parameter #1 [ <optional> $step ]
- Parameter #2 [ <optional> &$success ]
- Parameter #3 [ <optional> $ttl ]
+ Parameter #0 [ <required> string $key ]
+ Parameter #1 [ <optional> int $step = 1 ]
+ Parameter #2 [ <optional> &$success = null ]
+ Parameter #3 [ <optional> int $ttl = 0 ]
}
+ - Return [ int|false ]
}
Function [ <internal:apcu> function apcu_dec ] {
- Parameters [4] {
- Parameter #0 [ <required> $key ]
- Parameter #1 [ <optional> $step ]
- Parameter #2 [ <optional> &$success ]
- Parameter #3 [ <optional> $ttl ]
+ Parameter #0 [ <required> string $key ]
+ Parameter #1 [ <optional> int $step = 1 ]
+ Parameter #2 [ <optional> &$success = null ]
+ Parameter #3 [ <optional> int $ttl = 0 ]
}
+ - Return [ int|false ]
}
Function [ <internal:apcu> function apcu_cas ] {
- Parameters [3] {
+ Parameter #0 [ <required> string $key ]
+ Parameter #1 [ <required> int $old ]
+ Parameter #2 [ <required> int $new ]
+ }
+ - Return [ bool ]
+ }
+ Function [ <internal:apcu> function apcu_fetch ] {
+
+ - Parameters [2] {
Parameter #0 [ <required> $key ]
- Parameter #1 [ <required> $old ]
- Parameter #2 [ <required> $new ]
+ Parameter #1 [ <optional> &$success = null ]
}
+ - Return [ mixed ]
}
Function [ <internal:apcu> function apcu_exists ] {
- Parameters [1] {
- Parameter #0 [ <required> $keys ]
+ Parameter #0 [ <required> $key ]
+ }
+ - Return [ array|bool ]
+ }
+ Function [ <internal:apcu> function apcu_delete ] {
+
+ - Parameters [1] {
+ Parameter #0 [ <required> $key ]
}
+ - Return [ array|bool ]
}
Function [ <internal:apcu> function apcu_entry ] {
- Parameters [3] {
- Parameter #0 [ <required> $key ]
- Parameter #1 [ <required> callable $generator ]
- Parameter #2 [ <optional> integer $ttl ]
+ Parameter #0 [ <required> string $key ]
+ Parameter #1 [ <required> callable $callback ]
+ Parameter #2 [ <optional> int $ttl = 0 ]
}
+ - Return [ mixed ]
}
}
- Classes [1] {
- Class [ <internal:apcu> <iterateable> class APCuIterator implements Iterator, Traversable ] {
+ Class [ <internal:apcu> <iterateable> class APCUIterator implements Iterator, Traversable ] {
- Constants [0] {
}
@@ -183,10 +197,10 @@ Extension [ <persistent> extension #74 apcu version 5.1.18 ] {
Method [ <internal:apcu, ctor> public method __construct ] {
- Parameters [4] {
- Parameter #0 [ <optional> $search ]
- Parameter #1 [ <optional> $format ]
- Parameter #2 [ <optional> $chunk_size ]
- Parameter #3 [ <optional> $list ]
+ Parameter #0 [ <optional> $search = null ]
+ Parameter #1 [ <optional> int $format = APC_ITER_ALL ]
+ Parameter #2 [ <optional> int $chunk_size = 0 ]
+ Parameter #3 [ <optional> int $list = APC_LIST_ACTIVE ]
}
}
@@ -194,48 +208,56 @@ Extension [ <persistent> extension #74 apcu version 5.1.18 ] {
- Parameters [0] {
}
+ - Return [ void ]
}
- Method [ <internal:apcu, prototype Iterator> public method current ] {
+ Method [ <internal:apcu, prototype Iterator> public method next ] {
- Parameters [0] {
}
+ - Return [ void ]
}
- Method [ <internal:apcu, prototype Iterator> public method key ] {
+ Method [ <internal:apcu, prototype Iterator> public method valid ] {
- Parameters [0] {
}
+ - Return [ bool ]
}
- Method [ <internal:apcu, prototype Iterator> public method next ] {
+ Method [ <internal:apcu, prototype Iterator> public method key ] {
- Parameters [0] {
}
+ - Return [ string|int ]
}
- Method [ <internal:apcu, prototype Iterator> public method valid ] {
+ Method [ <internal:apcu, prototype Iterator> public method current ] {
- Parameters [0] {
}
+ - Return [ mixed ]
}
Method [ <internal:apcu> public method getTotalHits ] {
- Parameters [0] {
}
+ - Return [ int ]
}
Method [ <internal:apcu> public method getTotalSize ] {
- Parameters [0] {
}
+ - Return [ int ]
}
Method [ <internal:apcu> public method getTotalCount ] {
- Parameters [0] {
}
+ - Return [ int ]
}
}
}