matthiasmullie / path-converter
相对路径转换器
1.1.3
2019-02-05 23:41 UTC
Requires
- php: >=5.3.0
- ext-pcre: *
Requires (Dev)
- phpunit/phpunit: ~4.8
README
用法
use MatthiasMullie\PathConverter\Converter; $from = '/css/imports/icons.css'; $to = '/css/minified.css'; $converter = new Converter($from, $to); $result = $converter->convert('../../images/icon.jpg'); // $result is now '../images/icon.jpg'
方法
__construct($from, $to)
对象构造函数接受2个路径:源路径,即你的文件当前相对于的路径,以及要转换到的目标路径。
convert($path): string
$path是相对文件,当前相对于$from(在构造函数中)。返回值将是这个相同的文件的相对路径,但现在相对于$to(在构造函数中)
安装
如果你使用Composer来管理项目依赖项,只需在composer.json文件中添加对matthiasmullie/path-converter
的依赖。
composer require matthiasmullie/path-converter
尽管推荐使用Composer,但你实际上可以以任何你想要的方式包含这些文件。
许可证
PathConverter遵循MIT许可证。