coresky / upload
文件上传的生产级工具
0.546
2024-07-24 13:29 UTC
Requires
- php: >7.0
- energy/air: *
This package is auto-updated.
Last update: 2024-09-24 13:51:11 UTC
README
生产级工具。如果你的应用程序需要上传文件,请使用此产品。包含自定义裁剪图像。
状态:开发中
为 a_.. 动作重写
if ($cnt && 'upload' == $surl[0]) { common_c::$tune = array_shift($surl); $cnt--; }
附加 upload.js
在后台添加
# place upload.js to the tail upload\ant::init(); # or place upload.js to the head upload\ant::init('head');
其中 'upload' - 调整值(任何 /^[\w+\-]+$/
格式)
MySQL 改进
-- use enum for object's types: ALTER TABLE tblname CHANGE `obj` `obj` enum('com','per','prj','act','face') DEFAULT NULL, -- add a index: ..