logo
  • 教程列表
  • SO官方文档
  • APCu
    • 迭代条目
    • 简单的存储和检索
    • 储存信息
  1. StackOverflow 文档
  2. PHP 教程
  3. APCu
  4. 简单的存储和检索

简单的存储和检索

Created: November-22, 2018

apcu_store 可用于存储, apcu_fetch 可用于检索值:

$key = 'Hello';
$value = 'World';
apcu_store($key, $value);
print(apcu_fetch('Hello')); // 'World'
  • 储存信息
  • 迭代条目

Copyright © 2018. All right reserved

tastones.com 备案号:鲁ICP备18045372号-1

  • 关于我们
  • 免责声明