代码拉取完成,页面将自动刷新
# 结构 开发的模块放到 /api_dev/userapi 里面, 本框架用来模拟开发云API。 # $gpc ## 模块中调用云API ``` // site.php 模块中调用 load()->classs('cloudapi'); $api = new CloudApi(); $result = $api->get('Store', 'test', array('data' => ['hehe' => 'haha']), 'html'); print_r($result); ``` ## 云API 的实现 ``` // api_dev/userapi/store.php class Store { public function test($gpc) { print_r($gpc); } } /* $gpc Array ( [c] => Store // Class [a] => test // function [dataType] => html // 返回html,echo & exit,返回 json 请调用 json_result(mixed $data); [api_qs] => eyJkYXRhIjp7ImhlaGUiOiJoYWhhIn19 [data] => Array ( [hehe] => haha ) ) */ ``` # 如何使用缓存 > demo 里面的 Cache 类只是本地模拟数据存储的简单实现,并非上线上的实现方式 ``` // 直接使用,系统已自动加载 $cache = new Cache(); $cache->set('a', 'aa'); $cache->set('b', 'bb'); $cache->set('c', 'cc'); cloud_debug($cache->get('a'), 'a'); cloud_debug($cache->get_many(['a', 'b']), 'a, b'); cloud_debug($cache->get_many(['a', 'b', 'c']), 'a, b, c'); $cache->delete('b'); $cache->delete(['a', 'b']); exit; ```
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。