Download the PHP package gears/string without Composer

On this page you can find all versions of the php package gears/string. 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 string

Looking for maintainers, I no longer do much if any PHP dev, I have moved on, mostly work in dotnet core, node.js & golang these days. If anyone is keen to take over these projects, get in touch - [email protected]

The String Gear

Build Status Windows Build Status Latest Stable Version Total Downloads License HHVM Tested Coverage Status Scrutinizer Code Quality

An object oriented way to work with strings in PHP, with multibyte support baked in.

Credit & Inspiration

The original library https://github.com/danielstjules/Stringy The voku fork https://github.com/voku/Stringy

This version builds on voku's work. The main aim was to make the management of the code base easier by splitting the mountain of methods that make up the Stringy class into traits.

This does mean we have bumped the minimum PHP version to 5.4+

NOTE: There are also a few other changes, this is not an API compatible fork.

How to Install

Installation via composer is easy:

Then import the class into your script:

OO and Chaining

The library offers OO method chaining, as seen below:

Gears\String\Str has a __toString() method, which returns the current string when the object is used in a string context, ie: (string) Str::s('foo')

Implemented Interfaces

Gears\String\Str implements the IteratorAggregate interface, meaning that foreach can be used with an instance of the class:

It implements the Countable interface, enabling the use of count() to retrieve the number of characters in the string:

Furthermore, the ArrayAccess interface has been implemented. As a result, isset() can be used to check if a character at a specific index exists. And since Gears\String\Str is immutable, any call to offsetSet or offsetUnset will throw an exception. offsetGet has been implemented, however, and accepts both positive and negative indexes. Invalid indexes result in an OutOfBoundsException.

The Methods

All methods are documented with PSR-5 docblocks that provide autocomplete hints to any decent IDE such as PHP Storm or Atom with atom-autocomplete-php.


Developed by Brad Jones - [email protected]


All versions of string with dependencies

PHP Build Version
Package Version
Requires php Version ^5.4 || ^7.0
voku/portable-utf8 Version ^3.0
icecave/parity Version ^1.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 gears/string contains the following files

Loading the files please wait ....