Download the PHP package thomas-squall/string-utils without Composer

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

String Utils for php

List of available functions

1) string_starts_with 2) string_ends_with 3) string_between 4) strings_between 5) string_contains

string_starts_with

Description

Returns true if the $haystack string starts with the $needle string.

Definition

string_starts_with($haystack, $needle)

Where: 1) $haystack is the string to look into 2) $needle is the string to check if the $haystack starts with

Usage

This will print:

string_ends_with

Description

Returns true if the $haystack string ends with the $needle string.

Definition

string_ends_with($haystack, $needle)

Where: 1) $haystack is the string to look into 2) $needle is the string to check if the $haystack starts with

Usage

This will print:

string_between

Description

Returns the first occurrence of the string between the $start and $end string from $string. False if nothing is found.

Definition

string_between($string, $start, $end, $empty_string = false)

Where: 1) $string is the string to look into 2) $start is the left string to search 3) $end is the right string to search 4) $empty_string determines whether return empty strings or not

Usage

This will print:

strings_between

Description

Returns the strings between the $start and $end string from $string. Empty array if nothing is found.

Definition

strings_between($string, $start, $end, $empty_strings = false)

Where: 1) $string is the string to look into 2) $start is the left string to search 3) $end is the right string to search 4) $empty_strings determines whether return empty strings or not

Usage

This will print:

string_contains

Description

True or false whether the string $needle is contained in the string $haystack or not.

Definition

string_contains($haystack, $needle)

Where: 1) $haystack is the string to look into 2) $needle is the string to check if the $haystack contains

Usage

This will print:

More utilities coming


All versions of string-utils with dependencies

PHP Build Version
Package Version
No informations.
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 thomas-squall/string-utils contains the following files

Loading the files please wait ....