【文件属性】:
文件名称:Upload-master操作文件上传的PHP库.zip
文件大小:37KB
文件格式:ZIP
更新时间:2022-07-31 04:51:23
类库下载-Upload-master操作文件上传的PHP库
<?php
/**
* Upload
*
* @author Josh Lockhart
* @copyright 2012 Josh Lockhart
* @link http://www.joshlockhart.com
* @version 2.0.0
*
* MIT LICENSE
*
* Permission is hereby granted, free of charge, to any person obtaining
* a copy of this software and associated documentation files (the
* "Software"), to deal in the Software without restriction, including
* without limitation the rights to use, copy, modify, merge, publish,
* distribute, sublicense, and/or sell copies of the Software, and to
* permit persons to whom the Software is furnished to do so, subject to
* the following conditions:
*
* The above copyright notice and this permission notice shall be
* included in all copies or substantial portions of the Software.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
* EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
* NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
* LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
* OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
* WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
*/
namespace Upload;
/**
* FileInfo Interface
*
* @author Josh Lockhart
* @since 2.0.0
* @package Upload
*/
interface FileInfoInterface
{
public function getPathname();
public function getName();
public function setName($name);
public function getExtension();
public function setExtension($extension);
public function getNameWithExtension();
public function getMimetype();
public function getSize();
public function getMd5();
public function getDimensions();
public function isUploadedFile();
} File Upload 是一款非常强大的文件上传处理插件,支持多文件上传,拖拽上传,进度条,文件验证及图片音视频预览,跨域上传等等。可以说你能想到的功能它都有。你没想到的功能它也有。。不过由于功能太强大,使用起来还是需要点基本功,否则调试开发会遇到困难。
【文件预览】:
Upload-master操作文件上传的PHP库
----Upload-master()
--------src()
--------.travis.yml(284B)
--------LICENSE(1KB)
--------phpunit.xml(630B)
--------README.md(2KB)
--------tests()
--------.gitignore(38B)
--------composer.json(665B)
----php中文网下载站.url(114B)
----php中文网免费下载站.txt(219B)