Page Menu
Home
Phabricator
Search
Configure Global Search
Log In
Files
F4292957
apcu_ for GlobalFunctions
No One
Actions
View File
Edit File
Delete File
View Transforms
Subscribe
Authored By
Reedy
Jul 20 2016, 11:29 PM
2016-07-20 23:29:56 (UTC+0)
Size
498 B
Referenced Files
None
Subscribers
None
apcu_ for GlobalFunctions
View Options
if ( !function_exists( 'apcu_fetch') ) {
function apcu_fetch( $key, &$success = null ) {
return apc_fetch( $key, $success );
}
function apcu_store( $key, $var, $ttl = 0 ) {
return apc_store( $key, $var, $ttl );
}
function apcu_delete( $key ) {
return apc_delete( $key );
}
function apcu_inc( $key, $step = 1, &$success = null ) {
return apc_inc( $key, $step, $success );
}
function apcu_dec( $key, $step = 1, &$success = null ) {
return apc_dec( $key, $step, $success );
}
}
File Metadata
Details
Attached
Mime Type
text/plain; charset=utf-8
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
3878531
Default Alt Text
apcu_ for GlobalFunctions (498 B)
Attached To
Mode
P3531 apcu_ for GlobalFunctions
Attached
Detach File
Event Timeline
Log In to Comment