Download the PHP package cloudcake/php-fluent without Composer
On this page you can find all versions of the php package cloudcake/php-fluent. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Download cloudcake/php-fluent
More information about cloudcake/php-fluent
Files in cloudcake/php-fluent
Package php-fluent
Short Description Developer-experience focused string and array manipulation.
License MIT
Informations about the package php-fluent
PHP Fluent
Developer-experience focused string and array manipulation. Fluent is an
extremely thin wrapper around laravel/helpers with some extras that exposes two global functions
(str()
and arr()
) rather than the plethora of available helpers.
If you dislike global functions, stick to laravel/helpers - it has (recently added) fluent-like syntax without the extras.
Installation
:cookie: Laravel is NOT required to use this package.
Usage
It is important to note the slight argument placement change from the laravel/helpers package. The constructing data is always placed inside the helper function. This is to provide a more consistent, readable syntax you won't forget.
Example:
Usage of helpers follows this syntax for all string helpers as well as array helpers, the only exceptions being where an argument isn't required, for example str()->random()
or str()->uuid()
.
Extras
Ignore casing
Sometimes it's useful to call helpers ignoring the casing of strings, you can do this by chaining ->ignoreCasing()
before executing the function on the string. This provides a cleaner solution than changing the casing on every string yourself.
Example:
Produce many
There may be instances where you need to execute the same thing many times, for example let's say you need 10 UUID's, rather than iterating over the function many times, you may use produce()
method.
Example:
Note: If you use 1
as the produce value, the result will not be returned as an array.