45 lines
1.4 KiB
PHP
45 lines
1.4 KiB
PHP
|
<?php
|
||
|
/**
|
||
|
* This file is part of webman.
|
||
|
*
|
||
|
* Licensed under The MIT License
|
||
|
* For full copyright and license information, please see the MIT-LICENSE.txt
|
||
|
* Redistributions of files must retain the above copyright notice.
|
||
|
*
|
||
|
* @author walkor<walkor@workerman.net>
|
||
|
* @copyright walkor<walkor@workerman.net>
|
||
|
* @link http://www.workerman.net/
|
||
|
* @license http://www.opensource.org/licenses/mit-license.php MIT License
|
||
|
*/
|
||
|
|
||
|
namespace Webman;
|
||
|
|
||
|
use Webman\Exception\FileException;
|
||
|
|
||
|
class File extends \SplFileInfo
|
||
|
{
|
||
|
|
||
|
/**
|
||
|
* @param string $destination
|
||
|
* @return File
|
||
|
*/
|
||
|
public function move(string $destination)
|
||
|
{
|
||
|
\set_error_handler(function ($type, $msg) use (&$error) {
|
||
|
$error = $msg;
|
||
|
});
|
||
|
$path = \pathinfo($destination, PATHINFO_DIRNAME);
|
||
|
if (!\is_dir($path) && !\mkdir($path, 0777, true)) {
|
||
|
\restore_error_handler();
|
||
|
throw new FileException(\sprintf('Unable to create the "%s" directory (%s)', $path, \strip_tags($error)));
|
||
|
}
|
||
|
if (!rename($this->getPathname(), $destination)) {
|
||
|
\restore_error_handler();
|
||
|
throw new FileException(\sprintf('Could not move the file "%s" to "%s" (%s)', $this->getPathname(), $destination, \strip_tags($error)));
|
||
|
}
|
||
|
\restore_error_handler();
|
||
|
@\chmod($destination, 0666 & ~\umask());
|
||
|
return new self($destination);
|
||
|
}
|
||
|
|
||
|
}
|