nurmuhammet / php-file
简单的文件操作工具
1.0.0
2023-01-15 13:23 UTC
This package is auto-updated.
Last update: 2024-09-15 16:55:23 UTC
README
动机是什么?
这是我在高中时期学习PHP时编写的第一个可复用代码之一。这个包有可能在某个人的编程路上提供帮助。
示例
require __DIR__ . '/vendor/autoload.php'; use Nurmuhammet\File; # Available methods, see example.php for examples. File::exists('/path/to/file'); File::size('/path/to/file'); File::name('/path/to/file'); File::extension('/path/to/file'); File::delete('/path/to/file'); File::lastUpdated('/path/to/file'); File::get('/path/to/file'); File::put('/path/to/file', 'Content'); File::append('/path/to/file', 'Content'); File::truncate('/path/to/file'); File::copy('/path/to/file', '/path'); File::move('/path/to/file', '/path'); File::rename('/path/to/file', 'name'); File::download('/path/to/file', 'dir'); File::upload('/path/to/file', 'dir');