Simple storage and retrieval

suggest change

apcu_store can be used to store, apcu_fetch to retrieve values:

$key = 'Hello';
$value = 'World';
apcu_store($key, $value);
print(apcu_fetch('Hello')); // 'World'

Feedback about page:

Feedback:
Optional: your email if you want me to get back to you:



Table Of Contents