1 Star 0 Fork 84

Jimagic/ajaxUpload

forked from RockYang/Uploader 
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
image_list.php 974 Bytes
一键复制 编辑 原始数据 按行查看 历史
RockYang 提交于 2016-06-05 21:58 . 修复css兼容问题
<?php
/**
* 获取图片服务器上已上传的图片列表
* @author yangjian<[email protected]>
*/
header("Content-Type:text/html; charset=UTF-8");
$page = intval($_GET["page"]);
$offset = ($page - 1) * 15;
$image_dir = __DIR__."/files";
$files = array();
$handler = opendir($image_dir);
if ( $handler != false ) {
$i = 0;
while ( $filename = readdir($handler) ) {
if ( $filename != "." && $filename != ".." ) {
if ( $i <= $offset ) {
$i++;
continue;
}
$size = getimagesize("files/".$filename);
array_push($files, array("thumbURL" => "files/".$filename, "oriURL" => "files/".$filename,
"width" => intval($size[0]), "height" => intval($size[1])));
$i++;
if ( $i > $offset + 15 ) break;
}
}
closedir($handler);
}
$code = empty($files) ? 1 : 0;
echo json_encode(array("code" => $code, "data" => $files));
die();
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/jimagic/ajaxUpload.git
[email protected]:jimagic/ajaxUpload.git
jimagic
ajaxUpload
ajaxUpload
master

搜索帮助