1 Star 0 Fork 15

Xiao_xiao/JSON API For Discuz

forked from ailab/JSON API For Discuz 
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
functions.php 925 Bytes
一键复制 编辑 原始数据 按行查看 历史
ailab 提交于 2019-03-23 13:58 . diconv 转码处理
<?php
/*
* 应用中心主页:http://addon.discuz.com/?@ailab
* 人工智能实验室:Discuz!应用中心十大优秀开发者!
* 插件定制 联系QQ594941227
* From www.ailab.cn
*/
if(!defined('IN_DISCUZ')) {
exit('Access Denied');
}
$_JSONAPI=array();
require_once DISCUZ_ROOT.'./source/plugin/jsonapi/config.php';
function jsonApiLoad(){
global $_JSONAPI;
$filepath=DISCUZ_ROOT.'./source/plugin/jsonapi/api/';
$handle=opendir($filepath);
while(false!==($file=readdir($handle))){
if(substr_count($file,'.class.php')){
$_JSONAPI['class'][]=str_replace('.class.php','',$file);
require_once $filepath.$file;
}
}
}
function showApiError($code){
echo json_encode(array('status'=>$code));
exit;
}
function arrayToUtf8($arr){
if(strtolower(CHARSET)=='utf-8') return $arr;
foreach($arr as $k=>$v){
if(is_array($v)){
$arr[$k]=arrayToUtf8($v);
}else{
$arr[$k]=diconv($v,CHARSET,'UTF-8');
}
}
return $arr;
}
?>
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
PHP
1
https://gitee.com/watersteam/jsonapi.git
[email protected]:watersteam/jsonapi.git
watersteam
jsonapi
JSON API For Discuz
master

搜索帮助