# sliceupload **Repository Path**: hackchen/sliceupload ## Basic Information - **Project Name**: sliceupload - **Description**: 分片上传 - **Primary Language**: PHP - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2018-07-15 - **Last Updated**: 2020-12-19 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README #sliceupload 使用说明 把FileUpload.php这个类引入到项目中即可 例子: include 'FileUpload.php'; $rootDir = 'upload';//上传根目录 $subDir = '20161219'; //子目录 $upload = new FileUpload($rootDir,$subDir); $res = $upload->upload(); $error = $upload->getError();