wikimedia/relpath
Compute a relative filepath between two paths.
2.0.0
2017-07-28 21:20 UTC
Requires
- php: >=5.5.9
Requires (Dev)
- jakub-onderka/php-parallel-lint: ^0.9.0.0
- phpunit/phpunit: ^4.8.9.0
- mediawiki/mediawiki-codesniffer: ^0.4.0.0
README
RelPath is a small PHP library for computing a relative filepath to some path, either from the current directory or from an optional start directory.
Here is how you use it:
$relPath = \Wikimedia\RelPath::getRelativePath( '/srv/mediawiki/resources/src/startup.js', '/srv/mediawiki' ); // Result: string(24) "resources/src/startup.js" $fullPath = \Wikimedia\RelPath::joinPath( '/srv/mediawiki', 'resources/src/startup.js' ); // Result: string(39) "/srv/mediawiki/resources/src/startup.js"
License
MIT