FileService.php 36 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084
  1. <?php
  2. // +----------------------------------------------------------------------
  3. // | CRMEB [ CRMEB赋能开发者,助力企业发展 ]
  4. // +----------------------------------------------------------------------
  5. // | Copyright (c) 2016~2020 https://www.crmeb.com All rights reserved.
  6. // +----------------------------------------------------------------------
  7. // | Licensed CRMEB并不是自由软件,未经许可不能去掉CRMEB相关版权
  8. // +----------------------------------------------------------------------
  9. // | Author: CRMEB Team <admin@crmeb.com>
  10. // +----------------------------------------------------------------------
  11. namespace crmeb\services;
  12. use app\services\other\ExpressServices;
  13. use think\exception\ValidateException;
  14. /**
  15. * 文件操作类
  16. * Class FileService
  17. * @package crmeb\services
  18. */
  19. class FileService
  20. {
  21. /**
  22. * 创建目录
  23. * @param string $dir
  24. * @return bool
  25. */
  26. public static function mkDir(string $dir)
  27. {
  28. $dir = rtrim($dir, '/') . '/';
  29. if (!is_dir($dir)) {
  30. if (mkdir($dir, 0700) == false) {
  31. return false;
  32. }
  33. return true;
  34. }
  35. return true;
  36. }
  37. /**
  38. * @param $filename 写入文件名
  39. * @param $writetext 保存内容
  40. * @param string $openmod 打开方式
  41. * @return bool
  42. */
  43. public static function writeFile(string $filename, string $writetext, string $openmod = 'w')
  44. {
  45. if (@$fp = fopen($filename, $openmod)) {
  46. flock($fp, 2);
  47. fwrite($fp, $writetext);
  48. fclose($fp);
  49. return true;
  50. } else {
  51. return false;
  52. }
  53. }
  54. /**
  55. * 删除目录下所有满足条件文件
  56. * @param $path 文件目录
  57. * @param $start 开始时间
  58. * @param $end 结束时间
  59. * return bool
  60. */
  61. public static function del_where_dir($path, $start = '', $end = '')
  62. {
  63. if (!file_exists($path)) {
  64. return false;
  65. }
  66. $dh = @opendir($path);
  67. if ($dh) {
  68. while (($d = readdir($dh)) !== false) {
  69. if ($d == '.' || $d == '..') {//如果为.或..
  70. continue;
  71. }
  72. $tmp = $path . '/' . $d;
  73. if (!is_dir($tmp)) {//如果为文件
  74. $file_time = filemtime($tmp);
  75. if ($file_time) {
  76. if ($start != '' && $end != '') {
  77. if ($file_time >= $start && $file_time <= $end) {
  78. @unlink($tmp);
  79. }
  80. } elseif ($start != '' && $end == '') {
  81. if ($file_time >= $start) {
  82. @unlink($tmp);
  83. }
  84. } elseif ($start == '' && $end != '') {
  85. if ($file_time <= $end) {
  86. @unlink($tmp);
  87. }
  88. } else {
  89. @unlink($tmp);
  90. }
  91. }
  92. } else {//如果为目录
  93. self::delDir($tmp, $start, $end);
  94. }
  95. }
  96. //判断文件夹下是否 还有文件
  97. $count = count(scandir($path));
  98. closedir($dh);
  99. if ($count <= 2) @rmdir($path);
  100. }
  101. return true;
  102. }
  103. /**
  104. * 删除目录
  105. * @param $dirName
  106. * @return bool
  107. */
  108. public static function delDir($dirName)
  109. {
  110. if (!file_exists($dirName)) {
  111. return false;
  112. }
  113. $dir = opendir($dirName);
  114. while ($fileName = readdir($dir)) {
  115. $file = $dirName . '/' . $fileName;
  116. if ($fileName != '.' && $fileName != '..') {
  117. if (is_dir($file)) {
  118. self::delDir($file);
  119. } else {
  120. unlink($file);
  121. }
  122. }
  123. }
  124. closedir($dir);
  125. return rmdir($dirName);
  126. }
  127. /**
  128. * 拷贝目录
  129. * @param string $surDir
  130. * @param string $toDir
  131. * @return bool
  132. */
  133. public function copyDir(string $surDir, string $toDir)
  134. {
  135. $surDir = rtrim($surDir, '/') . '/';
  136. $toDir = rtrim($toDir, '/') . '/';
  137. if (!file_exists($surDir)) {
  138. return false;
  139. }
  140. if (!file_exists($toDir)) {
  141. $this->createDir($toDir);
  142. }
  143. $file = opendir($surDir);
  144. while ($fileName = readdir($file)) {
  145. $file1 = $surDir . '/' . $fileName;
  146. $file2 = $toDir . '/' . $fileName;
  147. if ($fileName != '.' && $fileName != '..') {
  148. if (is_dir($file1)) {
  149. $this->copyDir($file1, $file2);
  150. } else {
  151. copy($file1, $file2);
  152. }
  153. }
  154. }
  155. closedir($file);
  156. return true;
  157. }
  158. /**
  159. * 列出目录
  160. * @param $dir 目录名
  161. * @return array 列出文件夹下内容,返回数组 $dirArray['dir']:存文件夹;$dirArray['file']:存文件
  162. */
  163. static function getDirs($dir)
  164. {
  165. $dir = rtrim($dir, '/') . '/';
  166. $dirArray [][] = NULL;
  167. if (false != ($handle = opendir($dir))) {
  168. $i = 0;
  169. $j = 0;
  170. while (false !== ($file = readdir($handle))) {
  171. if (is_dir($dir . $file)) { //判断是否文件夹
  172. $dirArray ['dir'] [$i] = $file;
  173. $i++;
  174. } else {
  175. $dirArray ['file'] [$j] = $file;
  176. $j++;
  177. }
  178. }
  179. closedir($handle);
  180. }
  181. return $dirArray;
  182. }
  183. /**
  184. * 统计文件夹大小
  185. * @param $dir
  186. * @return int 文件夹大小(单位 B)
  187. */
  188. public static function getSize($dir)
  189. {
  190. $dirlist = opendir($dir);
  191. $dirsize = 0;
  192. while (false !== ($folderorfile = readdir($dirlist))) {
  193. if ($folderorfile != "." && $folderorfile != "..") {
  194. if (is_dir("$dir/$folderorfile")) {
  195. $dirsize += self::getSize("$dir/$folderorfile");
  196. } else {
  197. $dirsize += filesize("$dir/$folderorfile");
  198. }
  199. }
  200. }
  201. closedir($dirlist);
  202. return $dirsize;
  203. }
  204. /**
  205. * 检测是否为空文件夹
  206. * @param $dir
  207. * @return bool
  208. */
  209. static function emptyDir($dir)
  210. {
  211. return (($files = @scandir($dir)) && count($files) <= 2);
  212. }
  213. /**
  214. * 创建多级目录
  215. * @param string $dir
  216. * @param int $mode
  217. * @return boolean
  218. */
  219. public function createDir(string $dir, int $mode = 0777)
  220. {
  221. return is_dir($dir) or ($this->createDir(dirname($dir)) and mkdir($dir, $mode));
  222. }
  223. /**
  224. * 创建指定路径下的指定文件
  225. * @param string $path (需要包含文件名和后缀)
  226. * @param boolean $over_write 是否覆盖文件
  227. * @param int $time 设置时间。默认是当前系统时间
  228. * @param int $atime 设置访问时间。默认是当前系统时间
  229. * @return boolean
  230. */
  231. public function createFile(string $path, bool $over_write = FALSE, int $time = NULL, int $atime = NULL)
  232. {
  233. $path = $this->dirReplace($path);
  234. $time = empty($time) ? time() : $time;
  235. $atime = empty($atime) ? time() : $atime;
  236. if (file_exists($path) && $over_write) {
  237. $this->unlinkFile($path);
  238. }
  239. $aimDir = dirname($path);
  240. $this->createDir($aimDir);
  241. return touch($path, $time, $atime);
  242. }
  243. /**
  244. * 关闭文件操作
  245. * @param string $path
  246. * @return boolean
  247. */
  248. public function close(string $path)
  249. {
  250. return fclose($path);
  251. }
  252. /**
  253. * 读取文件操作
  254. * @param string $file
  255. * @return boolean
  256. */
  257. public static function readFile(string $file)
  258. {
  259. return @file_get_contents($file);
  260. }
  261. /**
  262. * 确定服务器的最大上传限制(字节数)
  263. * @return int 服务器允许的最大上传字节数
  264. */
  265. public function allowUploadSize()
  266. {
  267. $val = trim(ini_get('upload_max_filesize'));
  268. return $val;
  269. }
  270. /**
  271. * 字节格式化 把字节数格式为 B K M G T P E Z Y 描述的大小
  272. * @param int $size 大小
  273. * @param int $dec 显示类型
  274. * @return int
  275. */
  276. public static function byteFormat($size, $dec = 2)
  277. {
  278. $a = ["B", "KB", "MB", "GB", "TB", "PB", "EB", "ZB", "YB"];
  279. $pos = 0;
  280. while ($size >= 1024) {
  281. $size /= 1024;
  282. $pos++;
  283. }
  284. return round($size, $dec) . " " . $a[$pos];
  285. }
  286. /**
  287. * 删除非空目录
  288. * 说明:只能删除非系统和特定权限的文件,否则会出现错误
  289. * @param string $dirName 目录路径
  290. * @param boolean $is_all 是否删除所有
  291. * @param boolean $delDir 是否删除目录
  292. * @return boolean
  293. */
  294. public function removeDir(str $dir_path, bool $is_all = FALSE)
  295. {
  296. $dirName = $this->dirReplace($dir_path);
  297. $handle = @opendir($dirName);
  298. while (($file = @readdir($handle)) !== FALSE) {
  299. if ($file != '.' && $file != '..') {
  300. $dir = $dirName . '/' . $file;
  301. if ($is_all) {
  302. is_dir($dir) ? $this->removeDir($dir) : $this->unlinkFile($dir);
  303. } else {
  304. if (is_file($dir)) {
  305. $this->unlinkFile($dir);
  306. }
  307. }
  308. }
  309. }
  310. closedir($handle);
  311. return @rmdir($dirName);
  312. }
  313. /**
  314. * 获取完整文件名
  315. * @param string $fn 路径
  316. * @return string
  317. */
  318. public function getBasename(string $file_path)
  319. {
  320. $file_path = $this->dirReplace($file_path);
  321. return basename(str_replace('\\', '/', $file_path));
  322. //return pathinfo($file_path,PATHINFO_BASENAME);
  323. }
  324. /**
  325. * 获取文件后缀名
  326. * @param string $file_name 文件路径
  327. * @return string
  328. */
  329. public static function getExt(string $file)
  330. {
  331. $file = self::dirReplace($file);
  332. return pathinfo($file, PATHINFO_EXTENSION);
  333. }
  334. /**
  335. * 取得指定目录名称
  336. * @param string $path 文件路径
  337. * @param int $num 需要返回以上级目录的数
  338. * @return string
  339. */
  340. public function fatherDir(string $path, $num = 1)
  341. {
  342. $path = $this->dirReplace($path);
  343. $arr = explode('/', $path);
  344. if ($num == 0 || count($arr) < $num) return pathinfo($path, PATHINFO_BASENAME);
  345. return substr(strrev($path), 0, 1) == '/' ? $arr[(count($arr) - (1 + $num))] : $arr[(count($arr) - $num)];
  346. }
  347. /**
  348. * 删除文件
  349. * @param string $path
  350. * @return boolean
  351. */
  352. public function unlinkFile(string $path)
  353. {
  354. $path = $this->dirReplace($path);
  355. if (file_exists($path)) {
  356. return unlink($path);
  357. }
  358. }
  359. /**
  360. * 文件操作(复制/移动)
  361. * @param string $old_path 指定要操作文件路径(需要含有文件名和后缀名)
  362. * @param string $new_path 指定新文件路径(需要新的文件名和后缀名)
  363. * @param string $type 文件操作类型
  364. * @param boolean $overWrite 是否覆盖已存在文件
  365. * @return boolean
  366. */
  367. public function handleFile(string $old_path, string $new_path, string $type = 'copy', bool $overWrite = FALSE)
  368. {
  369. $old_path = $this->dirReplace($old_path);
  370. $new_path = $this->dirReplace($new_path);
  371. if (file_exists($new_path) && $overWrite = FALSE) {
  372. return FALSE;
  373. } else if (file_exists($new_path) && $overWrite = TRUE) {
  374. $this->unlinkFile($new_path);
  375. }
  376. $aimDir = dirname($new_path);
  377. $this->createDir($aimDir);
  378. switch ($type) {
  379. case 'copy':
  380. return copy($old_path, $new_path);
  381. break;
  382. case 'move':
  383. return @rename($old_path, $new_path);
  384. break;
  385. }
  386. }
  387. /**
  388. * 文件夹操作(复制/移动)
  389. * @param string $old_path 指定要操作文件夹路径
  390. * @param string $aimDir 指定新文件夹路径
  391. * @param string $type 操作类型
  392. * @param boolean $overWrite 是否覆盖文件和文件夹
  393. * @return boolean
  394. */
  395. public function handleDir(string $old_path, string $new_path, string $type = 'copy', bool $overWrite = FALSE)
  396. {
  397. $new_path = $this->checkPath($new_path);
  398. $old_path = $this->checkPath($old_path);
  399. if (!is_dir($old_path)) return FALSE;
  400. if (!file_exists($new_path)) $this->createDir($new_path);
  401. $dirHandle = opendir($old_path);
  402. if (!$dirHandle) return FALSE;
  403. $boolean = TRUE;
  404. while (FALSE !== ($file = readdir($dirHandle))) {
  405. if ($file == '.' || $file == '..') continue;
  406. if (!is_dir($old_path . $file)) {
  407. $boolean = $this->handleFile($old_path . $file, $new_path . $file, $type, $overWrite);
  408. } else {
  409. $this->handleDir($old_path . $file, $new_path . $file, $type, $overWrite);
  410. }
  411. }
  412. switch ($type) {
  413. case 'copy':
  414. closedir($dirHandle);
  415. return $boolean;
  416. break;
  417. case 'move':
  418. closedir($dirHandle);
  419. return @rmdir($old_path);
  420. break;
  421. }
  422. }
  423. /**
  424. * 替换相应的字符
  425. * @param string $path 路径
  426. * @return string
  427. */
  428. public static function dirReplace(string $path)
  429. {
  430. return str_replace('//', '/', str_replace('\\', '/', $path));
  431. }
  432. /**
  433. * 读取指定路径下模板文件
  434. * @param string $path 指定路径下的文件
  435. * @return string $rstr
  436. */
  437. public static function getTempltes(string $path)
  438. {
  439. $path = self::dirReplace($path);
  440. if (file_exists($path)) {
  441. $fp = fopen($path, 'r');
  442. $rstr = fread($fp, filesize($path));
  443. fclose($fp);
  444. return $rstr;
  445. } else {
  446. return '';
  447. }
  448. }
  449. /**
  450. * @param string $oldname 原始名称
  451. * @param string $newname 新名称
  452. * @return bool
  453. */
  454. public function rename(string $oldname, string $newname)
  455. {
  456. if (($newname != $oldname) && is_writable($oldname)) {
  457. return rename($oldname, $newname);
  458. }
  459. }
  460. /**
  461. * 获取指定路径下的信息
  462. * @param string $dir 路径
  463. * @return ArrayObject
  464. */
  465. public function getDirInfo(string $dir)
  466. {
  467. $handle = @opendir($dir);//打开指定目录
  468. $directory_count = 0;
  469. while (FALSE !== ($file_path = readdir($handle))) {
  470. if ($file_path != "." && $file_path != "..") {
  471. //is_dir("$dir/$file_path") ? $sizeResult += $this->get_dir_size("$dir/$file_path") : $sizeResult += filesize("$dir/$file_path");
  472. $next_path = $dir . '/' . $file_path;
  473. if (is_dir($next_path)) {
  474. $directory_count++;
  475. $result_value = self::getDirInfo($next_path);
  476. $total_size += $result_value['size'];
  477. $file_cout += $result_value['filecount'];
  478. $directory_count += $result_value['dircount'];
  479. } elseif (is_file($next_path)) {
  480. $total_size += filesize($next_path);
  481. $file_cout++;
  482. }
  483. }
  484. }
  485. closedir($handle);//关闭指定目录
  486. $result_value['size'] = $total_size;
  487. $result_value['filecount'] = $file_cout;
  488. $result_value['dircount'] = $directory_count;
  489. return $result_value;
  490. }
  491. /**
  492. * 指定文件编码转换
  493. * @param string $path 文件路径
  494. * @param string $input_code 原始编码
  495. * @param string $out_code 输出编码
  496. * @return boolean
  497. */
  498. public function changeFileCode(string $path, string $input_code, string $out_code)
  499. {
  500. if (is_file($path))//检查文件是否存在,如果存在就执行转码,返回真
  501. {
  502. $content = file_get_contents($path);
  503. $content = string::chang_code($content, $input_code, $out_code);
  504. $fp = fopen($path, 'w');
  505. $res = (bool)fputs($fp, $content);
  506. fclose($fp);
  507. return $res;
  508. }
  509. }
  510. /**
  511. * 指定目录下指定条件文件编码转换
  512. * @param string $dirname 目录路径
  513. * @param string $input_code 原始编码
  514. * @param string $out_code 输出编码
  515. * @param boolean $is_all 是否转换所有子目录下文件编码
  516. * @param string $exts 文件类型
  517. * @return boolean
  518. */
  519. public function changeDirFilesCode(string $dirname, string $input_code, string $out_code, bool $is_all = TRUE, string $exts = '')
  520. {
  521. if (is_dir($dirname)) {
  522. $fh = opendir($dirname);
  523. while (($file = readdir($fh)) !== FALSE) {
  524. if (strcmp($file, '.') == 0 || strcmp($file, '..') == 0) {
  525. continue;
  526. }
  527. $filepath = $dirname . '/' . $file;
  528. if (is_dir($filepath) && $is_all == TRUE) {
  529. $files = $this->changeDirFilesCode($filepath, $input_code, $out_code, $is_all, $exts);
  530. } else {
  531. if ($this->getExt($filepath) == $exts && is_file($filepath)) {
  532. $boole = $this->changeFileCode($filepath, $input_code, $out_code, $is_all, $exts);
  533. if (!$boole) continue;
  534. }
  535. }
  536. }
  537. closedir($fh);
  538. return TRUE;
  539. } else {
  540. return FALSE;
  541. }
  542. }
  543. /**
  544. * 列出指定目录下符合条件的文件和文件夹
  545. * @param string $dirname 路径
  546. * @param boolean $is_all 是否列出子目录中的文件
  547. * @param string $exts 需要列出的后缀名文件
  548. * @param string $sort 数组排序
  549. * @return ArrayObject
  550. */
  551. public function listDirInfo(string $dirname, bool $is_all = FALSE, string $exts = '', string $sort = 'ASC')
  552. {
  553. //处理多于的/号
  554. $new = strrev($dirname);
  555. if (strpos($new, '/') == 0) {
  556. $new = substr($new, 1);
  557. }
  558. $dirname = strrev($new);
  559. $sort = strtolower($sort);//将字符转换成小写
  560. $files = [];
  561. $subfiles = [];
  562. if (is_dir($dirname)) {
  563. $fh = opendir($dirname);
  564. while (($file = readdir($fh)) !== FALSE) {
  565. if (strcmp($file, '.') == 0 || strcmp($file, '..') == 0) continue;
  566. $filepath = $dirname . '/' . $file;
  567. switch ($exts) {
  568. case '*':
  569. if (is_dir($filepath) && $is_all == TRUE) {
  570. $files = array_merge($files, self::listDirInfo($filepath, $is_all, $exts, $sort));
  571. }
  572. array_push($files, $filepath);
  573. break;
  574. case 'folder':
  575. if (is_dir($filepath) && $is_all == TRUE) {
  576. $files = array_merge($files, self::listDirInfo($filepath, $is_all, $exts, $sort));
  577. array_push($files, $filepath);
  578. } elseif (is_dir($filepath)) {
  579. array_push($files, $filepath);
  580. }
  581. break;
  582. case 'file':
  583. if (is_dir($filepath) && $is_all == TRUE) {
  584. $files = array_merge($files, self::listDirInfo($filepath, $is_all, $exts, $sort));
  585. } elseif (is_file($filepath)) {
  586. array_push($files, $filepath);
  587. }
  588. break;
  589. default:
  590. if (is_dir($filepath) && $is_all == TRUE) {
  591. $files = array_merge($files, self::listDirInfo($filepath, $is_all, $exts, $sort));
  592. } elseif (preg_match("/\.($exts)/i", $filepath) && is_file($filepath)) {
  593. array_push($files, $filepath);
  594. }
  595. break;
  596. }
  597. switch ($sort) {
  598. case 'asc':
  599. sort($files);
  600. break;
  601. case 'desc':
  602. rsort($files);
  603. break;
  604. case 'nat':
  605. natcasesort($files);
  606. break;
  607. }
  608. }
  609. closedir($fh);
  610. return $files;
  611. } else {
  612. return FALSE;
  613. }
  614. }
  615. /**
  616. * 返回指定路径的文件夹信息,其中包含指定路径中的文件和目录
  617. * @param string $dir
  618. * @return ArrayObject
  619. */
  620. public function dirInfo(string $dir)
  621. {
  622. return scandir($dir);
  623. }
  624. /**
  625. * 判断目录是否为空
  626. * @param string $dir
  627. * @return boolean
  628. */
  629. public function isEmpty(string $dir)
  630. {
  631. $handle = opendir($dir);
  632. while (($file = readdir($handle)) !== false) {
  633. if ($file != '.' && $file != '..') {
  634. closedir($handle);
  635. return true;
  636. }
  637. }
  638. closedir($handle);
  639. return false;
  640. }
  641. /**
  642. * 返回指定文件和目录的信息
  643. * @param string $file
  644. * @return ArrayObject
  645. */
  646. public static function listInfo(string $file)
  647. {
  648. $dir = [];
  649. $dir['filename'] = basename($file);//返回路径中的文件名部分。
  650. $dir['pathname'] = strstr(php_uname('s'), 'Windows') ? str_replace('\\', '\\\\', realpath($file)) : realpath($file);//返回绝对路径名。
  651. $dir['owner'] = fileowner($file);//文件的 user ID (所有者)。
  652. $dir['perms'] = fileperms($file);//返回文件的 inode 编号。
  653. $dir['inode'] = fileinode($file);//返回文件的 inode 编号。
  654. $dir['group'] = filegroup($file);//返回文件的组 ID。
  655. $dir['path'] = dirname($file);//返回路径中的目录名称部分。
  656. $dir['atime'] = fileatime($file);//返回文件的上次访问时间。
  657. $dir['ctime'] = filectime($file);//返回文件的上次改变时间。
  658. $dir['perms'] = fileperms($file);//返回文件的权限。
  659. $dir['size'] = self::byteFormat(filesize($file), 2);//返回文件大小。
  660. $dir['type'] = filetype($file);//返回文件类型。
  661. $dir['ext'] = is_file($file) ? pathinfo($file, PATHINFO_EXTENSION) : '';//返回文件后缀名
  662. $dir['mtime'] = filemtime($file);//返回文件的上次修改时间。
  663. $dir['isDir'] = is_dir($file);//判断指定的文件名是否是一个目录。
  664. $dir['isFile'] = is_file($file);//判断指定文件是否为常规的文件。
  665. $dir['isLink'] = is_link($file);//判断指定的文件是否是连接。
  666. $dir['isReadable'] = is_readable($file);//判断文件是否可读。
  667. $dir['isWritable'] = is_writable($file);//判断文件是否可写。
  668. $dir['isUpload'] = is_uploaded_file($file);//判断文件是否是通过 HTTP POST 上传的。
  669. return $dir;
  670. }
  671. /**
  672. * 返回关于打开文件的信息
  673. * @param $file
  674. * @return ArrayObject
  675. * 数字下标 关联键名(自 PHP 4.0.6) 说明
  676. * 0 dev 设备名
  677. * 1 ino 号码
  678. * 2 mode inode 保护模式
  679. * 3 nlink 被连接数目
  680. * 4 uid 所有者的用户 id
  681. * 5 gid 所有者的组 id
  682. * 6 rdev 设备类型,如果是 inode 设备的话
  683. * 7 size 文件大小的字节数
  684. * 8 atime 上次访问时间(Unix 时间戳)
  685. * 9 mtime 上次修改时间(Unix 时间戳)
  686. * 10 ctime 上次改变时间(Unix 时间戳)
  687. * 11 blksize 文件系统 IO 的块大小
  688. * 12 blocks 所占据块的数目
  689. */
  690. public function openInfo(string $file)
  691. {
  692. $file = fopen($file, "r");
  693. $result = fstat($file);
  694. fclose($file);
  695. return $result;
  696. }
  697. /**
  698. * 改变文件和目录的相关属性
  699. * @param string $file 文件路径
  700. * @param string $type 操作类型
  701. * @param string $ch_info 操作信息
  702. * @return boolean
  703. */
  704. public function change_file($file, $type, $ch_info)
  705. {
  706. switch ($type) {
  707. case 'group' :
  708. $is_ok = chgrp($file, $ch_info);//改变文件组。
  709. break;
  710. case 'mode' :
  711. $is_ok = chmod($file, $ch_info);//改变文件模式。
  712. break;
  713. case 'ower' :
  714. $is_ok = chown($file, $ch_info);//改变文件所有者。
  715. break;
  716. }
  717. }
  718. /**
  719. * 取得文件路径信息
  720. * @param $full_path 完整路径
  721. * @return ArrayObject
  722. */
  723. public function getFileType(string $path)
  724. {
  725. //pathinfo() 函数以数组的形式返回文件路径的信息。
  726. //---------$file_info = pathinfo($path); echo file_info['extension'];----------//
  727. //extension取得文件后缀名【pathinfo($path,PATHINFO_EXTENSION)】-----dirname取得文件路径【pathinfo($path,PATHINFO_DIRNAME)】-----basename取得文件完整文件名【pathinfo($path,PATHINFO_BASENAME)】-----filename取得文件名【pathinfo($path,PATHINFO_FILENAME)】
  728. return pathinfo($path);
  729. }
  730. /**
  731. * 取得上传文件信息
  732. * @param $file file属性信息
  733. * @return array
  734. */
  735. public function getUploadFileInfo($file)
  736. {
  737. $file_info = request()->file($file);//取得上传文件基本信息
  738. $info = [];
  739. $info['type'] = strtolower(trim(stripslashes(preg_replace("/^(.+?);.*$/", "\\1", $file_info['type'])), '"'));//取得文件类型
  740. $info['temp'] = $file_info['tmp_name'];//取得上传文件在服务器中临时保存目录
  741. $info['size'] = $file_info['size'];//取得上传文件大小
  742. $info['error'] = $file_info['error'];//取得文件上传错误
  743. $info['name'] = $file_info['name'];//取得上传文件名
  744. $info['ext'] = $this->getExt($file_info['name']);//取得上传文件后缀
  745. return $info;
  746. }
  747. /**
  748. * 设置文件命名规则
  749. * @param string $type 命名规则
  750. * @param string $filename 文件名
  751. * @return string
  752. */
  753. public function setFileName(string $type)
  754. {
  755. switch ($type) {
  756. case 'hash' :
  757. mt_srand();
  758. $new_file = md5(uniqid(mt_rand()));//mt_srand()以随机数md5加密来命名
  759. break;
  760. case 'time' :
  761. $new_file = time();
  762. break;
  763. default :
  764. $new_file = date($type, time());//以时间格式来命名
  765. break;
  766. }
  767. return $new_file;
  768. }
  769. /**
  770. * 文件保存路径处理
  771. * @return string
  772. */
  773. public function checkPath($path)
  774. {
  775. return (preg_match('/\/$/', $path)) ? $path : $path . '/';
  776. }
  777. /**
  778. * 文件下载
  779. * $save_dir 保存路径
  780. * $filename 文件名
  781. * @return array
  782. */
  783. public static function downRemoteFile(string $url, string $save_dir = '', string $filename = '', int $type = 0)
  784. {
  785. if (trim($url) == '') {
  786. return ['file_name' => '', 'save_path' => '', 'error' => 1];
  787. }
  788. if (trim($save_dir) == '') {
  789. $save_dir = './';
  790. }
  791. if (trim($filename) == '') {//保存文件名
  792. $ext = strrchr($url, '.');
  793. // if($ext!='.gif'&&$ext!='.jpg'){
  794. // return ['file_name'=>'','save_path'=>'','error'=>3];
  795. // }
  796. $filename = time() . $ext;
  797. }
  798. if (0 !== strrpos($save_dir, '/')) {
  799. $save_dir .= '/';
  800. }
  801. //创建保存目录
  802. if (!file_exists($save_dir) && !mkdir($save_dir, 0777, true)) {
  803. return ['file_name' => '', 'save_path' => '', 'error' => 5];
  804. }
  805. //获取远程文件所采用的方法
  806. if ($type) {
  807. $ch = curl_init();
  808. $timeout = 5;
  809. curl_setopt($ch, CURLOPT_URL, $url);
  810. curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
  811. curl_setopt($ch, CURLOPT_CONNECTTIMEOUT, $timeout);
  812. $img = curl_exec($ch);
  813. curl_close($ch);
  814. } else {
  815. ob_start();
  816. readfile($url);
  817. $img = ob_get_contents();
  818. ob_end_clean();
  819. }
  820. //$size=strlen($img);
  821. //文件大小
  822. $fp2 = fopen($save_dir . $filename, 'a');
  823. fwrite($fp2, $img);
  824. fclose($fp2);
  825. unset($img, $url);
  826. return ['file_name' => $filename, 'save_path' => $save_dir . $filename, 'error' => 0];
  827. }
  828. /**
  829. * 解压zip文件
  830. * @param string $filename
  831. * @param string $savename
  832. * @return bool
  833. */
  834. public static function zipOpen(string $filename, string $savename)
  835. {
  836. $zip = new \ZipArchive;
  837. $zipfile = $filename;
  838. $res = $zip->open($zipfile);
  839. $toDir = $savename;
  840. if (!file_exists($toDir)) mkdir($toDir, 0777);
  841. $docnum = $zip->numFiles;
  842. for ($i = 0; $i < $docnum; $i++) {
  843. $statInfo = $zip->statIndex($i);
  844. if ($statInfo['crc'] == 0 && $statInfo['comp_size'] != 2) {
  845. //新建目录
  846. mkdir($toDir . '/' . substr($statInfo['name'], 0, -1), 0777);
  847. } else {
  848. //拷贝文件
  849. copy('zip://' . $zipfile . '#' . $statInfo['name'], $toDir . '/' . $statInfo['name']);
  850. }
  851. }
  852. $zip->close();
  853. return true;
  854. }
  855. /**
  856. *设置字体格式
  857. * @param $title string 必选
  858. * return string
  859. */
  860. public static function setUtf8($title)
  861. {
  862. return iconv('utf-8', 'gb2312', $title);
  863. }
  864. /**
  865. *检查指定文件是否能写入
  866. * @param $file string 必选
  867. * return boole
  868. */
  869. public static function isWritable($file)
  870. {
  871. $file = str_replace('\\', '/', $file);
  872. if (!file_exists($file)) return false;
  873. return is_writable($file);
  874. }
  875. /**读取excel文件内容
  876. * @param $filePath
  877. * @param $row_num
  878. * @param $suffix
  879. * @return array|false
  880. * @throws \PhpOffice\PhpSpreadsheet\Reader\Exception
  881. */
  882. public function readExcel($filePath, $row_num = 2, $suffix = 'Xlsx')
  883. {
  884. if (!$filePath) return false;
  885. $pathInfo = pathinfo($filePath, PATHINFO_EXTENSION);
  886. if (!$pathInfo || $pathInfo != "xlsx") throw new ValidateException('必须上传xlsx格式文件');
  887. //加载读取模型
  888. $readModel = \PhpOffice\PhpSpreadsheet\IOFactory::createReader($suffix);
  889. // 创建读操作
  890. // 打开文件 载入excel表格
  891. try {
  892. $spreadsheet = $readModel->load($filePath);
  893. $sheet = $spreadsheet->getActiveSheet();
  894. $sheet->getHighestColumn();
  895. $highestRow = $sheet->getHighestRow();
  896. $lines = $highestRow - 1;
  897. if ($lines <= 0) {
  898. throw new ValidateException('物流数据不能为空');
  899. }
  900. // 用于存储表格数据
  901. /** @var ExpressServices $expressService */
  902. $expressService = app()->make(ExpressServices::class);
  903. $data = $expressCode = [];
  904. for ($i = $row_num; $i <= $highestRow; $i++) {
  905. $t1 = $this->objToStr($sheet->getCellByColumnAndRow(1, $i)->getValue());
  906. $t2 = $this->objToStr($sheet->getCellByColumnAndRow(2, $i)->getValue());
  907. $t3 = $this->objToStr($sheet->getCellByColumnAndRow(3, $i)->getValue());
  908. $t4 = $this->objToStr($sheet->getCellByColumnAndRow(4, $i)->getValue());
  909. $t5 = $this->objToStr($sheet->getCellByColumnAndRow(5, $i)->getValue());
  910. if ($t1 && $t2 && $t3 && $t4 && $t5) {
  911. $data[] = [$t1, $t2, $t3, $t4, $t5];
  912. $expressCode[] = $t4;
  913. }
  914. }
  915. if ($expressCode) {
  916. $expressCode = array_unique(array_map('trim', $expressCode));
  917. $expressId = $expressService->getColumn([['code', 'in', $expressCode]], 'id', 'code');
  918. foreach ($expressCode as $code) {
  919. if (!isset($expressId[$code])) {
  920. throw new ValidateException($code . '订单物流公司不在平台收录内');
  921. }
  922. }
  923. }
  924. return $data;
  925. } catch (\Exception $e) {
  926. throw new ValidateException($e->getMessage());
  927. }
  928. }
  929. /**
  930. * 读取商品卡密excel文件内容
  931. * @param $filePath
  932. * @param int $row_num
  933. * @param string $suffix
  934. * @return array|false
  935. * @throws \PhpOffice\PhpSpreadsheet\Reader\Exception
  936. */
  937. public function readProductCardExcel($filePath, $row_num = 1, $suffix = 'Xlsx')
  938. {
  939. if (!$filePath) return false;
  940. $pathInfo = pathinfo($filePath, PATHINFO_EXTENSION);
  941. if (!$pathInfo || $pathInfo != "xlsx") throw new ValidateException('必须上传xlsx格式文件');
  942. //加载读取模型
  943. $readModel = \PhpOffice\PhpSpreadsheet\IOFactory::createReader($suffix);
  944. // 创建读操作
  945. // 打开文件 载入excel表格
  946. try {
  947. $spreadsheet = $readModel->load($filePath);
  948. $sheet = $spreadsheet->getActiveSheet();
  949. $sheet->getHighestColumn();
  950. $highestRow = $sheet->getHighestRow();
  951. $lines = $highestRow - 1;
  952. if ($lines <= 0) {
  953. throw new ValidateException('数据不能为空');
  954. }
  955. // 用于存储表格数据
  956. $data = [];
  957. for ($i = $row_num; $i <= $highestRow; $i++) {
  958. $t1 = $this->objToStr($sheet->getCellByColumnAndRow(1, $i)->getValue()) ?? '';
  959. $t2 = $this->objToStr($sheet->getCellByColumnAndRow(2, $i)->getValue());
  960. if ($t2) {
  961. $data[] = [
  962. 'key' => $t1,
  963. 'value' => $t2
  964. ];
  965. }
  966. }
  967. return $data;
  968. } catch (\Exception $e) {
  969. throw new ValidateException($e->getMessage());
  970. }
  971. }
  972. /**对象转字符
  973. * @param $value
  974. * @return mixed
  975. */
  976. public function objToStr($value)
  977. {
  978. return is_object($value) ? $value->__toString() : $value;
  979. }
  980. /**
  981. * 压缩文件夹及文件
  982. * @param string $source 需要压缩的文件夹/文件路径
  983. * @param string $destination 压缩后的保存地址
  984. * @param string $folder 文件夹前缀,保存时需要去掉的父级文件夹
  985. * @return boolean
  986. */
  987. function addZip($source, $destination, $folder = '')
  988. {
  989. if (!extension_loaded('zip') || !file_exists($source)) {
  990. return false;
  991. }
  992. $zip = new \ZipArchive;
  993. if (!$zip->open($destination, $zip::CREATE)) {
  994. return false;
  995. }
  996. $source = str_replace('\\', '/', $source);
  997. $folder = str_replace('\\', '/', $folder);
  998. if (is_dir($source) === true) {
  999. $files = new \RecursiveIteratorIterator(new \RecursiveDirectoryIterator($source), \RecursiveIteratorIterator::SELF_FIRST);
  1000. foreach ($files as $file) {
  1001. $file = str_replace('\\', '/', $file);
  1002. if (in_array(substr($file, strrpos($file, '/') + 1), array('.', '..'))) continue;
  1003. if (is_dir($file) === true) {
  1004. $zip->addEmptyDir(str_replace($folder . '/', '', $file . '/'));
  1005. } else if (is_file($file) === true) {
  1006. $zip->addFromString(str_replace($folder . '/', '', $file), file_get_contents($file));
  1007. }
  1008. }
  1009. } else if (is_file($source) === true) {
  1010. $zip->addFromString(basename($source), file_get_contents($source));
  1011. }
  1012. return $zip->close();
  1013. }
  1014. }