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.
Package string
Short Description Autoloading, error and exception handler
License MIT
Homepage http://eden-php.com
Informations about the package string
Eden String
- Install
- Introduction
- API
- addslashes
- bin2hex
- chunkSplit
- convertUudecode
- convertUuencode
- countChars
- crypt
- explode
- hex2bin
- htmlEntityDecode
- htmlentities
- htmlspecialchars
- htmlspecialcharsDecode
- ireplace
- istr
- lcfirst
- len
- ltrim
- md5
- nl2br
- pad
- pbrk
- pos
- pregReplace
- quotedPrintableDecode
- quotedPrintableEncode
- quotemeta
- repeat
- replace
- rev
- rot13
- rtrim
- sha1
- shuffle
- sprintf
- str
- stripTags
- stripcslashes
- stripslashes
- substr
- substrCompare
- substrCount
- substrReplace
- tok
- tolower
- toupper
- tr
- trim
- ucfirst
- ucwords
- vsprintf
- wordwrap
- Contributing
====
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
- Fork the repository
- 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
- Make your changes. Always make sure to sign-off (-s) on all commits made (git commit -s -m "Commit message")
Making pull requests
- Please ensure to run
phpunit
before making a pull request. - Push your code to your remote forked version.
- Go back to your forked version on GitHub and submit a pull request.
- An Eden developer will review your code and merge it in when it has been classified as suitable.