Download the PHP package jackiedo/path-helper without Composer

On this page you can find all versions of the php package jackiedo/path-helper. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.

FAQ

After the download, you have to make one include require_once('vendor/autoload.php');. After that you have to import the classes with use statements.

Example:
If you use only one package a project is not needed. But if you use more then one package, without a project it is not possible to import the classes with use statements.

In general, it is recommended to use always a project to download your libraries. In an application normally there is more than one library needed.
Some PHP packages are not free to download and because of that hosted in private repositories. In this case some credentials are needed to access such packages. Please use the auth.json textarea to insert credentials, if a package is coming from a private repository. You can look here for more information.

  • Some hosting areas are not accessible by a terminal or SSH. Then it is not possible to use Composer.
  • To use Composer is sometimes complicated. Especially for beginners.
  • Composer needs much resources. Sometimes they are not available on a simple webspace.
  • If you are using private repositories you don't need to share your credentials. You can set up everything on our site and then you provide a simple download link to your team member.
  • Simplify your Composer build process. Use our own command line tool to download the vendor folder as binary. This makes your build process faster and you don't need to expose your credentials for private repositories.
Please rate this library. Is it a good library?

Informations about the package path-helper

Path Helper

Helper class for working with local paths in PHP.

Compatibility

This package requires PHP 5.4.0 or later.

Overview

Look at one of the following topics to learn more about Path Helper

Installation

Download a latest package or use Composer:

Usage

After requiring composer autoloader, you can use the package in the following ways:

Using static method

Using method of instance

Using built-in function

See here for more details.

Available methods

Normalize the directory separators of the path

Formats the directory separators of a given path with a specific string.

Syntax:

Example:

Restyle the path

Restyle to Unix style

Alternative to normalize($path, '/') method.

Syntax:

Example:

Restyle to Windows style

Alternative to normalize($path, '\\') method.

Syntax:

Example:

Restyle belong to current OS

Alternative to normalize($path, DIRECTORY_SEPARATOR) method.

Syntax:

Example:

Create the absolute path

Create the absolute path from a given path.

Syntax:

Example:

Note:

This method looks like PHP's realpath() function at first glance, but it actually works in a different way.

The realpath() function returns the absolute path to the existing directory or file, while this method does not check for actual existence.

Create the relative path

Create the relative path from a given file or directory to another location.

Syntax:

Example:

Check the form of the path

Check the absolute form

Syntax:

Example:

Check the relative form

Syntax:

Example:

Check the mutual wrapping of paths

Check if the path is ancestor of another

Syntax:

Example:

Check if the path is descendant of another

Syntax:

Example:

Available functions

This package contains several built-in functions to alternative using the methods of the Path class. However, the use of these functions is not recommended, because they may conflict with the functions of other packages.

Function Class method
absolute_path() Path::absolute()
relative_path() Path::relative()
winstyle_path() Path::winStyle()
unixstyle_path() Path::unixStyle()
osstyle_path() Path::osStyle()
normalize_path() Path::normalize()
is_absolute_path() Path::isAbsolute()
is_relative_path() Path::isRelative()
is_descendant_path() Path::isDescendant()
is_ancestor_path() Path::isAncestor()

License

MIT © Jackie Do


All versions of path-helper with dependencies

PHP Build Version
Package Version
Requires php Version >=5.4.0
Composer command for our command line client (download client) This client runs in each environment. You don't need a specific PHP version etc. The first 20 API calls are free. Standard composer command

The package jackiedo/path-helper contains the following files

Loading the files please wait ....