PHP code example of kiryi / pathyi

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);

format(string $path, bool $leadingSlash = false, bool $trailingSlash = false): string

$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/'