1. Go to this page and download the library: Download bolt/pathogen 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/ */
bolt / pathogen example snippets
$atoms = $path->atoms(); // returns an array of strings
$name = $path->name(); // returns a string
$nameWithoutExtension = $path->nameWithoutExtension(); // returns a string
$namePrefix = $path->namePrefix(); // returns a string
$nameSuffix = $path->nameSuffix(); // returns a string or null
$extension = $path->extension(); // returns a string or null
use Eloquent\Pathogen\AbsolutePathInterface;
use Eloquent\Pathogen\PathInterface;
use Eloquent\Pathogen\RelativePathInterface;
function anyPath(PathInterface $path)
{
// accepts any path
}
function absoluteOnly(AbsolutePathInterface $path)
{
// accepts only absolute paths
}
function relativeOnly(RelativePathInterface $path)
{
// accepts only relative paths
}
use Eloquent\Pathogen\AbsolutePath;
use Eloquent\Pathogen\FileSystem\FileSystemPath;
use Eloquent\Pathogen\Path;
use Eloquent\Pathogen\RelativePath;
use Eloquent\Pathogen\Unix\UnixPath;
use Eloquent\Pathogen\Windows\AbsoluteWindowsPath;
use Eloquent\Pathogen\Windows\WindowsPath;
$path = Path::fromString('/path/to/foo'); // absolute path
$path = Path::fromString('bar/baz'); // relative path
$path = AbsolutePath::fromString('/path/to/foo'); // only creates absolute paths
$path = RelativePath::fromString('bar/baz'); // only creates relative paths
$path = FileSystemPath::fromString('/path/to/foo'); // Unix path
$path = FileSystemPath::fromString('C:\path\to\foo'); // Windows path
$path = UnixPath::fromString('/path/to/foo'); // only creates Unix paths
$path = WindowsPath::fromString('C:\path\to\foo'); // only creates Windows paths
$path = AbsoluteWindowsPath::fromString('C:\path\to\foo'); // only creates absolute Windows paths
use Eloquent\Pathogen\Path;
use Eloquent\Pathogen\Windows\AbsoluteWindowsPath;
// Equivalent to '/path/to/foo'
$path = Path::fromAtoms(array('path', 'to', 'foo'));
// Equivalent to 'C:\path\to\foo'
$path = AbsoluteWindowsPath::fromDriveAndAtoms(array('path', 'to', 'foo'), 'C');
use Eloquent\Pathogen\FileSystem\Factory\FileSystemPathFactory;
$factory = new FileSystemPathFactory;
$pathFoo = $factory->create('/path/to/foo');
$pathBar = $factory->create('C:/path/to/bar');
use Eloquent\Pathogen\FileSystem\FileSystemPath;
use Eloquent\Pathogen\Resolver\PathResolver;
$resolver = new PathResolver;
$basePath = FileSystemPath::fromString('/path/to/foo');
$relativePath = FileSystemPath::fromString('bar/baz');
$absolutePath = FileSystemPath::fromString('/path/to/qux');
echo $resolver->resolve($basePath, $relativePath); // outputs '/path/to/foo/bar/baz'
echo $resolver->resolve($basePath, $absolutePath); // outputs '/path/to/qux'
use Eloquent\Pathogen\FileSystem\FileSystemPath;
$path = FileSystemPath::fromString('/path/./to/foo/../bar');
echo $path->normalize(); // outputs '/path/to/bar'
use Eloquent\Pathogen\FileSystem\FileSystemPath;
use Eloquent\Pathogen\FileSystem\Normalizer\FileSystemPathNormalizer;
$normalizer = new FileSystemPathNormalizer;
$path = FileSystemPath::fromString('/path/./to/foo/../bar');
echo $normalizer->normalize($path); // outputs '/path/to/bar'
use Eloquent\Pathogen\FileSystem\FileSystemPath;
$pathFoo = FileSystemPath::fromString('/path/to/foo'); // creates a Unix-style path
$pathBar = FileSystemPath::fromString('C:/path/to/bar'); // creates a Windows path
use Eloquent\Pathogen\FileSystem\PlatformFileSystemPath;
// creates a path to match the current platform
$path = PlatformFileSystemPath::fromString('/path/to/foo');
$drive = $path->drive(); // returns a single-character string, or null
use Eloquent\Pathogen\FileSystem\Factory\Consumer\FileSystemPathFactoryTrait;
class ExampleConsumer
{
use FileSystemPathFactoryTrait;
}
$consumer = new ExampleConsumer;
echo get_class($consumer->pathFactory()); // outputs 'Eloquent\Pathogen\FileSystem\Factory\FileSystemPathFactory'
use Eloquent\Pathogen\FileSystem\Factory\PlatformFileSystemPathFactory;
$factory = new PlatformFileSystemPathFactory;
$workingDirectoryPath = $factory->createWorkingDirectoryPath();
$path = $workingDirectoryPath->resolve(
$factory->create($_SERVER['argv'][1])
);