Download the PHP package eden/string without Composer

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

logo Eden String

Build Status

====

Install

composer install eden/string

====

Enable Eden

The following documentation uses eden() in its example reference. Enabling this function requires an extra step as descirbed in this section which is not required if you access this package using the following.

When using composer, there is not an easy way to access functions from packages. As a workaround, adding this constant in your code will allow eden() to be available after.

For example:

====

Introduction

Chainable string methods. When using multiple PHP string functions in one line, it makes code harder to read. This is because a programmer needs to be trained to read code from inner to outer, rather than traditionally left to right (unless you live in Japan). Eden's data typing are objects that correct this readability problem.

The above demonstrates that we must read this as substr(), then strtoupper(), followed by str_replace() which is inner function first going outwards. The example below shows how using types makes this line easier to read.

Expressed vertically as below shows something more pleasing to a developer.

When echoed the string object will automatically convert to a native string. Eden covers most of the string functions provided by PHP. Below is a list of string methods you can linearly perform.

====

API

====

addslashes

Same as PHP: addslashes

Usage

Example

====

bin2hex

Same as PHP: bin2hex

Usage

Example

====

chunkSplit

Same as PHP: chunk_split

Usage

Example

====

convertUudecode

Same as PHP: convert_uudecode

Usage

Example

====

convertUuencode

Same as PHP: convert_uuencode

Usage

Example

====

countChars

Same as PHP: count_chars

Usage

Example

====

crypt

Same as PHP: crypt

Usage

Example

====

explode

Same as PHP: explode

Usage

Example

====

hex2bin

Same as PHP: hex2bin

Usage

Example

====

htmlEntityDecode

Same as PHP: html_entity_decode

Usage

Example

====

htmlentities

Same as PHP: htmlentities

Usage

Example

====

htmlspecialchars

Same as PHP: htmlspecialchars

Usage

Example

====

htmlspecialcharsDecode

Same as PHP: htmlspecialchars_decode

Usage

Example

====

lcfirst

Same as PHP: lcfirst

Usage

Example

====

ltrim

Same as PHP: ltrim

Usage

Example

====

md5

Same as PHP: md5

Usage

Example

====

nl2br

Same as PHP: nl2br

Usage

Example

====

pregReplace

Same as PHP: preg_replace

Usage

Example

====

quotedPrintableDecode

Same as PHP: quoted_printable_decode

Usage

Example

====

quotedPrintableEncode

Same as PHP: quoted_printable_encode

Usage

Example

====

quotemeta

Same as PHP: quotemeta

Usage

Example

====

rtrim

Same as PHP: rtrim

Usage

Example

====

sha1

Same as PHP: sha1

Usage

Example

====

sprintf

Same as PHP: sprintf

Usage

Example

====

ireplace

Same as PHP: str_ireplace

Usage

Example

====

pad

Same as PHP: str_pad

Usage

Example

====

repeat

Same as PHP: str_repeat

Usage

Example

====

replace

Same as PHP: str_replace

Usage

Example

====

rot13

Same as PHP: str_rot13

Usage

Example

====

shuffle

Same as PHP: str_shuffle

Usage

Example

====

stripTags

Same as PHP: strip_tags

Usage

Example

====

stripcslashes

Same as PHP: stripcslashes

Usage

Example

====

stripslashes

Same as PHP: stripslashes

Usage

Example

====

istr

Same as PHP: stristr

Usage

Example

====

len

Same as PHP: strlen

Usage

Example

====

pbrk

Same as PHP: strpbrk

Usage

Example

====

pos

Same as PHP: strpos

Usage

Example

====

rev

Same as PHP: strrev

Usage

Example

====

str

Same as PHP: strstr

Usage

Example

====

tok

Same as PHP: strtok

Usage

Example

====

tolower

Same as PHP: strtolower

Usage

Example

====

toupper

Same as PHP: strtoupper

Usage

Example

====

tr

Same as PHP: strtr

Usage

Example

====

substr

Same as PHP: substr

Usage

Example

====

substrCompare

Same as PHP: substr_compare

Usage

Example

====

substrCount

Same as PHP: substr_count

Usage

Example

====

substrReplace

Same as PHP: substr_replace

Usage

Example

====

trim

Same as PHP: trim

Usage

eden('string')->trim();

Example

eden('string')->set('Hello')->trim();

====

ucfirst

Same as PHP: ucfirst

Usage

eden('string')->ucfirst();

Example

eden('string')->set('Hello')->ucfirst();

====

ucwords

Same as PHP: ucwords

Usage

eden('string')->ucwords();

Example

eden('string')->set('Hello')->ucwords();

====

vsprintf

Same as PHP: vsprintf

Usage

eden('string')->vsprintf(array $replacements);

Example

eden('string')->set('Hello %s')->vsprintf(array('You'));

====

wordwrap

Same as PHP: wordwrap

Usage

eden('string')->wordwrap(int $length[, string $replacement]);

Example

eden('string')->set('Hello You')->wordwrap(3, '<br />');

====

Contributing to Eden

Contributions to Eden are following the Github work flow. Please read up before contributing.

Setting up your machine with the Eden repository and your fork

  1. Fork the repository
  2. Fire up your local terminal create a new branch from the v4 branch of your fork with a branch name describing what your changes are. Possible branch name types:
    • bugfix
    • feature
    • improvement
  3. Make your changes. Always make sure to sign-off (-s) on all commits made (git commit -s -m "Commit message")

Making pull requests

  1. Please ensure to run phpunit before making a pull request.
  2. Push your code to your remote forked version.
  3. Go back to your forked version on GitHub and submit a pull request.
  4. An Eden developer will review your code and merge it in when it has been classified as suitable.

All versions of string with dependencies

PHP Build Version
Package Version
Requires php Version >=5.4.1
eden/core Version 4.*
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 eden/string contains the following files

Loading the files please wait ....