Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <?php
- session_start();
- $apc_key = 'abc';
- if (!isset($_SESSION['created'])) {
- $_SESSION['created'] = true;
- $apc_data = array(
- 'test'=>'123',
- 'data'=>'test123456');
- apc_store($apc_key, $apc_data);
- }
- var_dump(apc_fetch($apc_key));
Advertisement
Add Comment
Please, Sign In to add comment