2 Star 4 Fork 4

微擎/api_dev

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
index.php 632 Bytes
一键复制 编辑 原始数据 按行查看 历史
gordensong 提交于 2017-08-21 16:11 . 云API本地开发框架初始化
<?php
/**
* [WeEngine System] Copyright (c) 2013 WE7.CC
* $sn$
*/
require './framework/bootstrap.inc.php';
error_reporting(E_ALL);
unset($_SERVER, $_ENV);
$lower_class = strtolower($class);
if (empty($lower_class)) {
api_return_error(error(1, '云API调用失败: 非法访问'));
}
include "userapi/{$lower_class}/{$lower_class}.php";
$methods = get_class_methods($class);
if (empty($methods) || !in_array($method, $methods)) {
api_return_error(error(1, '云API调用失败: 不存在 METHOD "'.$method.'" .'));
}
unset($methods, $lower_class);
$apiObj = new $class();
$apiObj->$method($_GPC);
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
PHP
1
https://gitee.com/we7coreteam/api_dev.git
[email protected]:we7coreteam/api_dev.git
we7coreteam
api_dev
api_dev
master

搜索帮助