1. Go to this page and download the library: Download kiryi/pathyi library. Choose the download type require.
2. Extract the ZIP file and open the index.php.
3. Add this code to the index.php.
<?php
require_once('vendor/autoload.php');
/* Start to develop here. Best regards https://php-download.com/ */
kiryi / pathyi example snippets
$pathyi = new \Kiryi\Pathyi\Formatter();
$path = $pathyi->format($path);
$path = '/this/is/my/path';
$pathyi = new \Kiryi\Pathyi\Formatter();
$path = $pathyi->format($path);
// $path is now 'this/is/my/path'
$path = $pathyi->format($path, true);
// $path is now '/this/is/my/path'
$path = $pathyi->format($path, false, true);
// $path is now 'this/is/my/path/'
Loading please wait ...
Before you can download the PHP files, the dependencies should be resolved. This can take some minutes. Please be patient.