企业🤖AI智能体构建引擎,智能编排和调试,一键部署,支持私有化部署方案 广告
##二次开发>缓存文件 配置文件命名规范`*.cache.php` 缓存内容可以是字符串和或数组。 **1.获取缓存** >PS::getCache($filename,$path ) $filename 必须 $path 程序名,默认当前程序名 ,对应系统常量 APP_PATH *实例* ~~~ class index(){ function get_cache(){ print_r( PS::getCache('menu') ); } } ~~~ http://phpstart.xyz/test/group1/index/get_cache * * * * * **1.写缓存** >PS::putCache($filename,$data,$path ) $filename 必须 $data 缓存数据,可以是数组或字符串 $path 程序名,默认当前程序名 ,对应系统常量 APP_PATH *实例* ~~~ class index(){ function putCache(){ echo 'filesize:'.PS::put_cache('menu',array('home','book')); } } ~~~ http://phpstart.xyz/test/group1/index/put_cache