面向对象的方式管理路径
github.com/sebastianfeldmann/camino
主页
源代码
问题
资助包维护! sebastianfeldmann
安装次数: 3,167,936
依赖者: 2
建议者: 0
安全性: 0
星标: 15
关注者: 1
分支: 2
开放性问题: 0
Requires
Requires (Dev)
None
Suggests
Provides
Conflicts
Replaces
MIT bf2e4c8b2a029e9eade43666132b61331e3e8184
pathfile system
This package is auto-updated.
Last update: 2024-08-29 05:12:46 UTC
以面向对象的方式处理文件系统路径
composer install sebastianfeldmann/camino
<?php use SebastianFeldmann\Camino; $file = Camino\Path\File::create(__FILE__); $dir = Camino\Path\Directory::create(__DIR__); if ($file->isInDirectory($dir)) { echo 'file is located inside the directory'; }