1 Star 0 Fork 0

雨煮年华/csszengarden.com

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
submissions.json 806 Bytes
一键复制 编辑 原始数据 按行查看 历史
Mathias Bynens 提交于 2013-05-31 08:59 . submissions.json: Enable CORS
<?php
include($SERVER_ROOT . 'includes/masterlist.php');
$callback = isset($_GET['callback']) ? preg_replace('/[^a-z0-9$_]/si', '', $_GET['callback']) : false;
header('Content-Type: ' . ($callback ? 'application/javascript' : 'application/json') . ';charset=utf-8');
// There’s no reason not to allow CORS for public APIs.
// See http://annevankesteren.nl/2012/12/cors-101 for details.
header('Access-Control-Allow-Origin: *');
function jsonify($entry) {
return array(
'submission' => $entry[0],
'title' => $entry[1],
'author' => $entry[2],
'website' => $entry[3]
);
}
$jsonDesignList = array_map('jsonify', $designList);
if ($callback) {
echo $callback . '(';
}
echo json_encode($jsonDesignList);
if ($callback) {
echo ')';
}
?>
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
CSS
1
https://gitee.com/avatman/csszengarden.com.git
git@gitee.com:avatman/csszengarden.com.git
avatman
csszengarden.com
csszengarden.com
master

搜索帮助