Skip to content

Phalcon helper

NOTE

All classes are prefixed with Phalcon

Helper\Arr

Source on GitHub

  • Namespace

    • Phalcon\Helper
  • Uses

    • stdClass
  • Extends

  • Implements

This class offers quick array functions throughout the framework

Methods

final public static function blackList( array $collection, array $blackList ): array;
Black list filter by key: exclude elements of an array by the keys obtained from the elements of a blacklist

final public static function chunk( array $collection, int $size, bool $preserveKeys = bool ): array;
Chunks an array into smaller arrays of a specified size.

final public static function filter( array $collection, mixed $method = null ): array;
Helper method to filter the collection

final public static function first( array $collection, mixed $method = null ): mixed;
Returns the first element of the collection. If a callable is passed, the element returned is the first that validates true

final public static function firstKey( array $collection, mixed $method = null ): mixed;
Returns the key of the first element of the collection. If a callable is passed, the element returned is the first that validates true

final public static function flatten( array $collection, bool $deep = bool ): array;
Flattens an array up to the one level depth, unless $deep is set to true

final public static function get( array $collection, mixed $index, mixed $defaultValue = null, string $cast = null ): mixed;
Helper method to get an array element or a default

final public static function group( array $collection, mixed $method ): array;
Groups the elements of an array based on the passed callable

final public static function has( array $collection, mixed $index ): bool;
Determines whether an element is present in the array.

final public static function isUnique( array $collection ): bool;
Checks a flat list for duplicate values. Returns true if duplicate values exist and false if values are all unique.

final public static function last( array $collection, mixed $method = null ): mixed;
Returns the last element of the collection. If a callable is passed, the element returned is the first that validates true

final public static function lastKey( array $collection, mixed $method = null ): mixed;
Returns the key of the last element of the collection. If a callable is passed, the element returned is the first that validates true

final public static function order( array $collection, mixed $attribute, string $order = string ): array;
Sorts a collection of arrays or objects by key

final public static function pluck( array $collection, string $element ): array;
Retrieves all of the values for a given key:

final public static function set( array $collection, mixed $value, mixed $index = null ): array;
Helper method to set an array element

final public static function sliceLeft( array $collection, int $elements = int ): array;
Returns a new array with n elements removed from the right.

final public static function sliceRight( array $collection, int $elements = int ): array;
Returns a new array with the X elements from the right

final public static function split( array $collection ): array;
Returns a new array with keys of the passed array as one element and values as another

final public static function toObject( array $collection );
Returns the passed array as an object

final public static function validateAll( array $collection, mixed $method = null ): bool;
Returns true if the provided function returns true for all elements of the collection, false otherwise.

final public static function validateAny( array $collection, mixed $method = null ): bool;
Returns true if the provided function returns true for at least one element of the collection, false otherwise.

final public static function whiteList( array $collection, array $whiteList ): array;
White list filter by key: obtain elements of an array filtering by the keys obtained from the elements of a whitelist

Helper\Base64

Source on GitHub

  • Namespace

    • Phalcon\Helper
  • Uses

  • Extends

  • Implements

This class offers quick string base64 functions

Methods

final public static function decodeUrl( string $input ): string;
Decode a Base64 Url string to a json string

final public static function encodeUrl( string $input ): string;
Encode a json string in Base64 Url format.

Helper\Exception

Source on GitHub

  • Namespace

    • Phalcon\Helper
  • Uses

  • Extends

    • Phalcon\Exception
  • Implements

Exceptions thrown in Phalcon\Helper will use this class

Helper\Fs

Source on GitHub

  • Namespace

    • Phalcon\Helper
  • Uses

  • Extends

  • Implements

This class offers file operation helper

Methods

final public static function basename( string $uri, mixed $suffix = null ): string;
Gets the filename from a given path, Same as PHP's basename() but has non-ASCII support. PHP's basename() does not properly support streams or filenames beginning with a non-US-ASCII character. see https://bugs.php.net/bug.php?id=37738

Helper\Json

Source on GitHub

  • Namespace

    • Phalcon\Helper
  • Uses

    • InvalidArgumentException
  • Extends

  • Implements

This class offers a wrapper for JSON methods to serialize and unserialize

Methods

final public static function decode( string $data, bool $associative = bool, int $depth = int, int $options = int ): mixed;
Decodes a string using json_decode and throws an exception if the JSON data cannot be decoded

use Phalcon\Helper\Json;

$data = '{"one":"two","0":"three"}';

var_dump(Json::decode($data));
// [
//     'one' => 'two',
//     'three'
// ];

final public static function encode( mixed $data, int $options = int, int $depth = int ): string;
Encodes a string using json_encode and throws an exception if the JSON data cannot be encoded

use Phalcon\Helper\Json;

$data = [
    'one' => 'two',
    'three'
];

echo Json::encode($data);
// {"one":"two","0":"three"}

Helper\Number

Source on GitHub

  • Namespace

    • Phalcon\Helper
  • Uses

  • Extends

  • Implements

This class offers numeric functions for the framework

Methods

final public static function between( int $value, int $from, int $to ): bool;
Helper method to get an array element or a default

Helper\Str

Source on GitHub

  • Namespace

    • Phalcon\Helper
  • Uses

    • RuntimeException
  • Extends

  • Implements

This class offers quick string functions throughout the framework

Constants

const RANDOM_ALNUM = 0;
const RANDOM_ALPHA = 1;
const RANDOM_DISTINCT = 5;
const RANDOM_HEXDEC = 2;
const RANDOM_NOZERO = 4;
const RANDOM_NUMERIC = 3;

Methods

final public static function camelize( string $text, mixed $delimiter = null ): string;
Converts strings to camelize style

use Phalcon\Helper\Str;

echo Str::camelize("coco_bongo");            // CocoBongo
echo Str::camelize("co_co-bon_go", "-");     // Co_coBon_go
echo Str::camelize("co_co-bon_go", "_-");    // CoCoBonGo

final public static function concat(): string;
Concatenates strings using the separator only once without duplication in places concatenation

$str = Phalcon\Helper\Str::concat(
    "/",
    "/tmp/",
    "/folder_1/",
    "/folder_2",
    "folder_3/"
);

echo $str;   // /tmp/folder_1/folder_2/folder_3/

final public static function countVowels( string $text ): int;
Returns number of vowels in provided string. Uses a regular expression to count the number of vowels (A, E, I, O, U) in a string.

final public static function decapitalize( string $text, bool $upperRest = bool, string $encoding = string ): string;
Decapitalizes the first letter of the string and then adds it with rest of the string. Omit the upperRest parameter to keep the rest of the string intact, or set it to true to convert to uppercase.

final public static function decrement( string $text, string $separator = string ): string;
Removes a number from a string or decrements that number if it already is defined. defined

use Phalcon\Helper\Str;

echo Str::decrement("a_1");    // "a"
echo Str::decrement("a_2");  // "a_1"

final public static function dirFromFile( string $file ): string;
Accepts a file name (without extension) and returns a calculated directory structure with the filename in the end

use Phalcon\Helper\Str;

echo Str::dirFromFile("file1234.jpg"); // fi/le/12/

final public static function dirSeparator( string $directory ): string;
Accepts a directory name and ensures that it ends with DIRECTORY_SEPARATOR

use Phalcon\Helper\Str;

echo Str::dirSeparator("/home/phalcon"); // /home/phalcon/

final public static function dynamic( string $text, string $leftDelimiter = string, string $rightDelimiter = string, string $separator = string ): string;
Generates random text in accordance with the template

use Phalcon\Helper\Str;

// Hi my name is a Bob
echo Str::dynamic("{Hi|Hello}, my name is a {Bob|Mark|Jon}!");

// Hi my name is a Jon
echo Str::dynamic("{Hi|Hello}, my name is a {Bob|Mark|Jon}!");

// Hello my name is a Bob
echo Str::dynamic("{Hi|Hello}, my name is a {Bob|Mark|Jon}!");

// Hello my name is a Zyxep
echo Str::dynamic(
    "[Hi/Hello], my name is a [Zyxep/Mark]!",
    "[", "]",
    "/"
);

final public static function endsWith( string $text, string $end, bool $ignoreCase = bool ): bool;
Check if a string ends with a given string

use Phalcon\Helper\Str;

echo Str::endsWith("Hello", "llo");          // true
echo Str::endsWith("Hello", "LLO", false);   // false
echo Str::endsWith("Hello", "LLO");          // true

final public static function firstBetween( string $text, string $start, string $end ): string;
Returns the first string there is between the strings from the parameter start and end.

final public static function friendly( string $text, string $separator = string, bool $lowercase = bool, mixed $replace = null ): string;
Changes a text to a URL friendly one

final public static function humanize( string $text ): string;
Makes an underscored or dashed phrase human-readable

use Phalcon\Helper\Str;

echo Str::humanize("start-a-horse"); // "start a horse"
echo Str::humanize("five_cats");     // "five cats"

final public static function includes( string $needle, string $haystack ): bool;
Lets you determine whether or not a string includes another string.

final public static function increment( string $text, string $separator = string ): string;
Adds a number to a string or increment that number if it already is defined

use Phalcon\Helper\Str;

echo Str::increment("a");    // "a_1"
echo Str::increment("a_1");  // "a_2"

final public static function isAnagram( string $first, string $second ): bool;
Compare two strings and returns true if both strings are anagram, false otherwise.

final public static function isLower( string $text, string $encoding = string ): bool;
Returns true if the given string is lower case, false otherwise.

final public static function isPalindrome( string $text ): bool;
Returns true if the given string is a palindrome, false otherwise.

final public static function isUpper( string $text, string $encoding = string ): bool;
Returns true if the given string is upper case, false otherwise.

final public static function lower( string $text, string $encoding = string ): string;
Lowercases a string, this function makes use of the mbstring extension if available

echo Phalcon\Helper\Str::lower("HELLO"); // hello

final public static function random( int $type = int, long $length = int ): string;
Generates a random string based on the given type. Type is one of the RANDOM_* constants

use Phalcon\Helper\Str;

echo Str::random(Str::RANDOM_ALNUM); // "aloiwkqz"

final public static function reduceSlashes( string $text ): string;
Reduces multiple slashes in a string to single slashes

// foo/bar/baz
echo Phalcon\Helper\Str::reduceSlashes("foo//bar/baz");

// http://foo.bar/baz/buz
echo Phalcon\Helper\Str::reduceSlashes("http://foo.bar///baz/buz");

final public static function startsWith( string $text, string $start, bool $ignoreCase = bool ): bool;
Check if a string starts with a given string

use Phalcon\Helper\Str;

echo Str::startsWith("Hello", "He");         // true
echo Str::startsWith("Hello", "he", false);  // false
echo Str::startsWith("Hello", "he");         // true

final public static function uncamelize( string $text, mixed $delimiter = null ): string;
Uncamelize strings which are camelized

use Phalcon\Helper\Str;

echo Str::uncamelize("CocoBongo");       // coco_bongo
echo Str::uncamelize("CocoBongo", "-");  // coco-bongo

final public static function underscore( string $text ): string;
Makes a phrase underscored instead of spaced

use Phalcon\Helper\Str;

echo Str::underscore("look behind");     // "look_behind"
echo Str::underscore("Awesome Phalcon"); // "Awesome_Phalcon"

final public static function upper( string $text, string $encoding = string ): string;
Uppercases a string, this function makes use of the mbstring extension if available

echo Phalcon\Helper\Str::upper("hello"); // HELLO