APPPATH
public
mixed
APPPATH
= realpath(rtrim($paths->appDirectory, '\/ ')) . DIRECTORY_SEPARATOR
public
mixed
APPPATH
= realpath(rtrim($paths->appDirectory, '\/ ')) . DIRECTORY_SEPARATOR
public
mixed
APPPATH
= \realpath(\rtrim($paths->appDirectory, '\/ ')) . \DIRECTORY_SEPARATOR
public
mixed
ENVIRONMENT
= $env
public
mixed
ENVIRONMENT
= env('CI_ENVIRONMENT', 'production')
public
mixed
ENVIRONMENT
= 'testing'
public
mixed
ROOTPATH
= realpath(APPPATH . '../') . DIRECTORY_SEPARATOR
public
mixed
ROOTPATH
= \realpath(\APPPATH . '../') . \DIRECTORY_SEPARATOR
public
mixed
STDOUT
= 'php://output'
public
mixed
SYSTEMPATH
= realpath(rtrim($paths->systemDirectory, '\/ ')) . DIRECTORY_SEPARATOR
public
mixed
SYSTEMPATH
= \realpath(\rtrim($paths->systemDirectory, '\/ ')) . \DIRECTORY_SEPARATOR
public
mixed
TESTPATH
= realpath(rtrim($paths->testsDirectory, '\/ ')) . DIRECTORY_SEPARATOR
public
mixed
TESTPATH
= \realpath(\rtrim($paths->testsDirectory, '\/ ')) . \DIRECTORY_SEPARATOR
public
mixed
VENDORPATH
= dirname(COMPOSER_PATH) . DIRECTORY_SEPARATOR
public
mixed
WRITEPATH
= realpath(rtrim($paths->writableDirectory, '\/ ')) . DIRECTORY_SEPARATOR
public
mixed
WRITEPATH
= \realpath(\rtrim($paths->writableDirectory, '\/ ')) . \DIRECTORY_SEPARATOR
Returns the timezone the application has been set to display dates in. This might be different than the timezone set at the server level, as you often want to stores dates in UTC and convert them on the fly for the user.
app_timezone() : string
A convenience method that provides access to the Cache object. If no parameter is provided, will return the object, otherwise, will attempt to return the cached value.
cache([string|null $key = null ]) : array<string|int, mixed>|bool|CacheInterface|float|int|object|string|null
Examples: cache()->save('foo', 'bar'); $foo = cache('bar');
A convenience method to clean paths for a nicer looking output. Useful for exception handling, error logging, etc.
clean_path(string $path) : string
Runs a single command.
command(string $command) : false|string
Input expected in a single string as would be used on the command line itself:
command('migrate:create SomeMigration');
More simple way of getting config instances from Factories
config(ConfigTemplate>|string $name[, bool $getShared = true ]) : ConfigTemplate|null
Simpler way to create a new Cookie instance.
cookie(string $name[, string $value = '' ][, array<string|int, mixed> $options = [] ]) : Cookie
Name of the cookie
Value of the cookie
Array of options to be passed to the cookie
Fetches the global `CookieStore` instance held by `Response`.
cookies([array<int, Cookie> $cookies = [] ][, bool $getGlobal = true ]) : CookieStore
If getGlobal
is false, this is passed to CookieStore's constructor
If false, creates a new instance of CookieStore
Returns the CSRF token name.
csrf_token() : string
Can be used in Views when building hidden inputs manually, or used in javascript vars when using APIs.
Returns the CSRF header name.
csrf_header() : string
Can be used in Views by adding it to the meta tag or used in javascript to define a header name when using APIs.
Returns the current hash value for the CSRF protection.
csrf_hash() : string
Can be used in Views when building hidden inputs manually, or used in javascript vars for API usage.
Generates a hidden input field for use within manually generated forms.
csrf_field([non-empty-string|null $id = null ]) : string
Generates a meta tag for use within javascript calls.
csrf_meta([non-empty-string|null $id = null ]) : string
Generates a nonce attribute for style tag.
csp_style_nonce() : string
Generates a nonce attribute for script tag.
csp_script_nonce() : string
Grabs a database connection and returns it to the user.
db_connect([array<string|int, mixed>|ConnectionInterface|string|null $db = null ][, bool $getShared = true ]) : BaseConnection
This is a convenience wrapper for \Config\Database::connect() and supports the same parameters. Namely:
When passing in $db, you may pass any of the following to connect:
If $getShared === false then a new connection instance will be provided, otherwise it will all calls will return the same instance.
Allows user to retrieve values from the environment variables that have been set. Especially useful for retrieving values set from the .env file for use in config files.
env(string $key[, string|null $default = null ]) : bool|string|null
Performs simple auto-escaping of data for security reasons.
esc(array<string|int, mixed>|string $data[, string $context = 'html' ][, string|null $encoding = null ]) : array<string|int, mixed>|string
Might consider making this more complex at a later date.
If $data is a string, then it simply escapes and returns it. If $data is an array, then it loops over it, escaping each 'value' of the key/value pairs.
Current encoding for escaping. If not UTF-8, we convert strings from this encoding pre-escaping and back to this encoding post-escaping.
Used to force a page to be accessed in via HTTPS.
force_https([int $duration = 31536000 ][, RequestInterface|null $request = null ][, ResponseInterface|null $response = null ]) : void
Uses a standard redirect, plus will set the HSTS header for modern browsers that support, which gives best protection against man-in-the-middle attacks.
How long should the SSL header be set for? (in seconds) Defaults to 1 year.
Function usable
function_usable(string $functionName) : bool
Executes a function_exists() check, and if the Suhosin PHP extension is loaded - checks whether the function that is checked might be disabled in there as well.
This is useful as function_exists() will return FALSE for functions disabled via the disable_functions php.ini setting, but not for suhosin.executor.func.blacklist and suhosin.executor.disable_eval. These settings will just terminate script execution if a disabled function is executed.
The above described behavior turned out to be a bug in Suhosin, but even though a fix was committed for 0.9.34 on 2012-02-12, that version is yet to be released. This function will therefore be just temporary, but would probably be kept for a few years.
Function to check for
TRUE if the function exists and is safe to call, FALSE otherwise.
Loads a helper file into memory. Supports namespaced helpers, both in and out of the 'Helpers' directory of a namespaced directory.
helper(array<string|int, mixed>|string $filenames) : void
Will load ALL helpers of the matching name, in the following order:
Check if PHP was invoked from the command line.
is_cli() : bool
Tests for file writability
is_really_writable(string $file) : bool
is_writable() returns TRUE on Windows servers when you really can't write to the file, based on the read-only attribute. is_writable() is also unreliable on Unix servers if safe_mode is on.
Detect if platform is running in Windows.
is_windows([bool|null $mock = null ]) : bool
A convenience method to translate a string or array of them and format the result with the intl extension's MessageFormatter.
lang(string $line[, array<string|int, mixed> $args = [] ][, string|null $locale = null ]) : array<int, string>|string
A convenience/compatibility method for logging events through the Log system.
log_message(string $level, string $message[, array<string|int, mixed> $context = [] ]) : void
Allowed log levels are:
More simple way of getting model instances from Factories
model(ModelTemplate>|string $name[, bool $getShared = true ][, ConnectionInterface|null &$conn = null ]) : ModelTemplate|null
Provides access to "old input" that was set in the session during a redirect()->withInput().
old(string $key[, string|null $default = null ][, false|string $escape = 'html' ]) : array<string|int, mixed>|string|null
Convenience method that works with the current global $request and $router instances to redirect using named/reverse-routed routes to determine the URL to go to.
redirect([non-empty-string|null $route = null ]) : RedirectResponse
If more control is needed, you must use $response->redirect explicitly.
Route name or Controller::method
Remove Invisible Characters
remove_invisible_characters(string $str[, bool $urlEncoded = true ]) : string
This prevents sandwiching null characters between ascii characters, like Java\0script.
Returns the shared Request.
request() : CLIRequest|IncomingRequest
Returns the shared Response.
response() : ResponseInterface
Given a route name or controller/method string and any params, will attempt to build the relative URL to the matching route.
route_to(string $method, int|string ...$params) : false|string
NOTE: This requires the controller/method to have a route defined in the routes Config file.
Route name or Controller::method
One or more parameters to be passed to the route. The last parameter allows you to set the locale.
The route (URI path relative to baseURL) or false if not found.
A convenience method for accessing the session instance, or an item that has been set in the session.
session([string|null $val = null ]) : array<string|int, mixed>|bool|float|int|object|Session|string|null
Examples: session()->set('foo', 'bar'); $foo = session('bar');
Allows cleaner access to the Services Config file.
service(string $name, array<string|int, mixed>|bool|float|int|object|string|null ...$params) : object|null
Always returns a SHARED instance of the class, so calling the function multiple times should always return the same instance.
These are equal:
Always returns a new instance of the class.
single_service(string $name, array<string|int, mixed>|bool|float|int|object|string|null ...$params) : object|null
Fetch a config file item with slash appended (if not empty)
slash_item(string $item) : string|null
Config item name
The configuration item or NULL if the item doesn't exist
Stringify attributes for use in HTML tags.
stringify_attributes(array<string|int, mixed>|object|string $attributes[, bool $js = false ]) : string
Helper function used to convert a string, array, or object of attributes to a string.
string, array, object that can be cast to array
A convenience method for working with the timer.
timer([non-empty-string|null $name = null ][, callable(): mixed|null $callable = null ]) : mixed|Timer
If no parameter is passed, it will return the timer instance. If callable is passed, it measures time of callable and returns its return value if any. Otherwise will start or stop the timer intelligently.
Grabs the current RendererInterface-compatible class and tells it to render the specified view. Simply provides a convenience method that can be used in Controllers, libraries, and routed closures.
view(string $name[, array<string|int, mixed> $data = [] ][, array<string|int, mixed> $options = [] ]) : string
NOTE: Does not provide any escaping of the data, so that must all be handled manually by the developer.
Options for saveData or third-party extensions.
View cells are used within views to insert HTML chunks that are managed by other classes.
view_cell(string $library[, array<string|int, mixed>|string|null $params = null ][, int $ttl = 0 ][, string|null $cacheName = null ]) : string
Get the class "basename" of the given object / class.
class_basename(object|string $class) : string
Returns all traits used by a class, its parent classes and trait of their traits.
class_uses_recursive(object|string $class) : array<string|int, mixed>
Returns all traits used by a trait and its traits.
trait_uses_recursive(string $trait) : array<string|int, mixed>
Searches an array through dot syntax. Supports wildcard searches, like foo.*.bar
dot_array_search(string $index, array<string|int, mixed> $array) : array<string|int, mixed>|bool|int|object|string|null
Returns the value of an element at a key in an array of uncertain depth.
array_deep_search(int|string $key, array<string|int, mixed> $array) : array<string|int, mixed>|bool|float|int|object|string|null
Sorts a multidimensional array by its elements values. The array columns to be used for sorting are passed as an associative array of key names and sorting flags.
array_sort_by_multiple_keys(array<string|int, mixed> &$array, array<string|int, mixed> $sortColumns) : bool
Both arrays of objects and arrays of array can be sorted.
Example: array_sort_by_multiple_keys($players, [ 'team.hierarchy' => SORT_ASC, 'position' => SORT_ASC, 'name' => SORT_STRING, ]);
The '.' dot operator in the column name indicates a deeper array or object level. In principle, any number of sublevels could be used, as long as the level and column exist in every array element.
For information on multi-level array sorting, refer to Example #3 here: https://www.php.net/manual/de/function.array-multisort.php
the reference of the array to be sorted
an associative array of columns to sort after and their sorting flags
Flatten a multidimensional array using dots as separators.
array_flatten_with_dots(iterable<string|int, mixed> $array[, string $id = '' ]) : array<string|int, mixed>
The multi-dimensional array
Something to initially prepend to the flattened keys
The flattened array
Groups all rows by their index values. Result's depth equals number of indexes
array_group_by(array<string|int, mixed> $array, array<string|int, mixed> $indexes[, bool $includeEmpty = false ]) : array<string|int, mixed>
Data array (i.e. from query result)
Indexes to group by. Dot syntax used. Returns $array if empty
If true, null and '' are also added as valid keys to group
Result array where rows are grouped together by indexes values.
Set cookie
set_cookie(array<string|int, mixed>|Cookie|string $name[, string $value = '' ][, int $expire = 0 ][, string $domain = '' ][, string $path = '/' ][, string $prefix = '' ][, bool|null $secure = null ][, bool|null $httpOnly = null ][, string|null $sameSite = null ]) : void
Accepts seven parameters, or you can submit an associative array in the first parameter containing all the values.
Cookie name / array containing binds / Cookie object
The value of the cookie
The number of seconds until expiration
For site-wide cookie. Usually: .yourdomain.com
The cookie path
The cookie prefix ('': the default prefix)
True makes the cookie secure
True makes the cookie accessible via http(s) only (no javascript)
The cookie SameSite value
Fetch an item from the $_COOKIE array
get_cookie(string $index[, bool $xssClean = false ][, string|null $prefix = '' ]) : array<string|int, mixed>|string|null
Cookie name prefix. '': the prefix in Config\Cookie null: no prefix
Delete a cookie
delete_cookie(string $name[, string $domain = '' ][, string $path = '/' ][, string $prefix = '' ]) : void
the cookie domain. Usually: .yourdomain.com
the cookie path
the cookie prefix
Checks if a cookie exists by name.
has_cookie(string $name[, string|null $value = null ][, string $prefix = '' ]) : bool
Get "now" time
now([non-empty-string|null $timezone = null ]) : int
Returns Time::now()->getTimestamp() based on the timezone parameter or on the app_timezone() setting
Generates a select field of all available timezones
timezone_select([string $class = '' ][, string $default = '' ][, int $what = DateTimeZone::ALL ][, string $country = null ]) : string
Returns a string with the formatted HTML
Optional class to apply to the select field
Default value for initial selection
One of the DateTimeZone class constants (for listIdentifiers)
A two-letter ISO 3166-1 compatible country code (for listIdentifiers)
Create a Directory Map
directory_map(string $sourceDir[, int $directoryDepth = 0 ][, bool $hidden = false ]) : array<string|int, mixed>
Reads the specified directory and builds an array representation of it. Sub-folders contained with the directory will be mapped as well.
Path to source
Depth of directories to traverse (0 = fully recursive, 1 = current dir, etc)
Whether to show hidden files
Recursively copies the files and directories of the origin directory into the target directory, i.e. "mirror" its contents.
directory_mirror(string $originDir, string $targetDir[, bool $overwrite = true ]) : void
Whether individual files overwrite on collision
Write File
write_file(string $path, string $data[, string $mode = 'wb' ]) : bool
Writes data to the file specified in the path. Creates a new file if non-existent.
File path
Data to write
fopen() mode (default: 'wb')
Delete Files
delete_files(string $path[, bool $delDir = false ][, bool $htdocs = false ][, bool $hidden = false ]) : bool
Deletes all files contained in the supplied directory path. Files must be writable or owned by the system in order to be deleted. If the second parameter is set to true, any directories contained within the supplied base directory will be nuked as well.
File path
Whether to delete any directories found in the path
Whether to skip deleting .htaccess and index page files
Whether to include hidden files (files beginning with a period)
Get Filenames
get_filenames(string $sourceDir[, bool|null $includePath = false ][, bool $hidden = false ][, bool $includeDir = true ]) : array<string|int, mixed>
Reads the specified directory and builds an array containing the filenames. Any sub-folders contained within the specified path are read as well.
Path to source
Whether to include the path as part of the filename; false for no path, null for a relative path, true for full path
Whether to include hidden files (files beginning with a period)
Whether to include directories
Get Directory File Information
get_dir_file_info(string $sourceDir[, bool $topLevelOnly = true ][, bool $recursion = false ]) : array<string|int, mixed>
Reads the specified directory and builds an array containing the filenames, filesize, dates, and permissions
Any sub-folders contained within the specified path are read as well.
Path to source
Look only at the top level directory specified?
Internal variable to determine recursion status - do not use in calls
Get File Info
get_file_info(string $file[, array<string|int, mixed>|string $returnedValues = ['name', 'server_path', 'size', 'date'] ]) : array<string|int, mixed>|null
Given a file and path, returns the name, path, size, date modified Second parameter allows you to explicitly declare what information you want returned Options are: name, server_path, size, date, readable, writable, executable, fileperms Returns false if the file cannot be found.
Path to file
Array or comma separated string of information returned
Symbolic Permissions
symbolic_permissions(int $perms) : string
Takes a numeric value representing a file's permissions and returns standard symbolic notation representing that value
Permissions
Octal Permissions
octal_permissions(int $perms) : string
Takes a numeric value representing a file's permissions and returns a three character string representing the file's octal permissions
Permissions
Checks if two files both exist and have identical hashes
same_file(string $file1, string $file2) : bool
Same or not
Set Realpath
set_realpath(string $path[, bool $checkExistence = false ]) : string
Checks to see if the path exists
Form Declaration
form_open([string $action = '' ][, array<string|int, mixed>|string $attributes = [] ][, array<string|int, mixed> $hidden = [] ]) : string
Creates the opening portion of the form.
the URI segments of the form destination
a key/value pair of attributes, or string representation
a key/value pair hidden data
Form Declaration - Multipart type
form_open_multipart([string $action = '' ][, array<string|int, mixed>|string $attributes = [] ][, array<string|int, mixed> $hidden = [] ]) : string
Creates the opening portion of the form, but with "multipart/form-data".
The URI segments of the form destination
A key/value pair of attributes, or the same as a string
A key/value pair hidden data
Hidden Input Field
form_hidden(array<string|int, mixed>|string $name[, array<string|int, mixed>|string $value = '' ][, bool $recursing = false ]) : string
Generates hidden fields. You can pass a simple key/value string or an associative array with multiple values.
Field name or associative array to create multiple fields
Field value
Text Input Field. If 'type' is passed in the $type field, it will be used as the input type, for making 'email', 'phone', etc input fields.
form_input([array<string|int, mixed>|string $data = '' ][, string $value = '' ][, array<string|int, mixed>|object|string $extra = '' ][, string $type = 'text' ]) : string
string, array, object that can be cast to array
Password Field
form_password([array<string|int, mixed>|string $data = '' ][, string $value = '' ][, array<string|int, mixed>|object|string $extra = '' ]) : string
Identical to the input function but adds the "password" type
string, array, object that can be cast to array
Upload Field
form_upload([array<string|int, mixed>|string $data = '' ][, string $value = '' ][, array<string|int, mixed>|object|string $extra = '' ]) : string
Identical to the input function but adds the "file" type
string, array, object that can be cast to array
Textarea field
form_textarea([array<string|int, mixed>|string $data = '' ][, string $value = '' ][, array<string|int, mixed>|object|string $extra = '' ]) : string
string, array, object that can be cast to array
Multi-select menu
form_multiselect([array<string|int, mixed>|string $name = '' ][, array<string|int, mixed> $options = [] ][, array<string|int, mixed> $selected = [] ][, array<string|int, mixed>|object|string $extra = '' ]) : string
string, array, object that can be cast to array
Drop-down Menu
form_dropdown([array<string|int, mixed>|string $data = '' ][, array<string|int, mixed>|string $options = [] ][, array<string|int, mixed>|string $selected = [] ][, array<string|int, mixed>|object|string $extra = '' ]) : string
string, array, object that can be cast to array
Checkbox Field
form_checkbox([array<string|int, mixed>|string $data = '' ][, string $value = '' ][, bool $checked = false ][, array<string|int, mixed>|object|string $extra = '' ]) : string
string, array, object that can be cast to array
Radio Button
form_radio([array<string|int, mixed>|string $data = '' ][, string $value = '' ][, bool $checked = false ][, array<string|int, mixed>|object|string $extra = '' ]) : string
string, array, object that can be cast to array
Submit Button
form_submit([array<string|int, mixed>|string $data = '' ][, string $value = '' ][, array<string|int, mixed>|object|string $extra = '' ]) : string
string, array, object that can be cast to array
Reset Button
form_reset([array<string|int, mixed>|string $data = '' ][, string $value = '' ][, array<string|int, mixed>|object|string $extra = '' ]) : string
string, array, object that can be cast to array
Form Button
form_button([array<string|int, mixed>|string $data = '' ][, string $content = '' ][, array<string|int, mixed>|object|string $extra = '' ]) : string
string, array, object that can be cast to array
Form Label Tag
form_label([string $labelText = '' ][, string $id = '' ][, array<string|int, mixed> $attributes = [] ]) : string
The text to appear onscreen
The id the label applies to
Additional attributes
Datalist
form_datalist(string $name, string $value, array<string|int, mixed> $options) : string
The
Fieldset Tag
form_fieldset([string $legendText = '' ][, array<string|int, mixed> $attributes = [] ]) : string
Used to produce
The legend text
Additional attributes
Fieldset Close Tag
form_fieldset_close([string $extra = '' ]) : string
Form Close Tag
form_close([string $extra = '' ]) : string
Form Value
set_value(string $field[, array<int, string>|string $default = '' ][, bool $htmlEscape = true ]) : array<int, string>|string
Grabs a value from the POST array for the specified field so you can re-populate an input field or textarea
Field name
Default value
Whether to escape HTML special characters or not
Set Select
set_select(string $field[, string $value = '' ][, bool $default = false ]) : string
Let's you set the selected value of a
Set Checkbox
set_checkbox(string $field[, string $value = '' ][, bool $default = false ]) : string
Let's you set the selected value of a checkbox via the value in the POST array.
Set Radio
set_radio(string $field[, string $value = '' ][, bool $default = false ]) : string
Let's you set the selected value of a radio field via info in the POST array.
Returns the validation errors.
validation_errors() : array<string, string>
First, checks the validation errors that are stored in the session.
To store the errors in the session, you need to use withInput()
with redirect()
.
The returned array should be in the following format: [ 'field1' => 'error message', 'field2' => 'error message', ]
Returns the rendered HTML of the validation errors.
validation_list_errors([string $template = 'list' ]) : string
See Validation::listErrors()
Returns a single error for the specified field in formatted HTML.
validation_show_error(string $field[, string $template = 'single' ]) : string
See Validation::showError()
Unordered List
ul(array<string|int, mixed> $list[, array<string|int, mixed>|object|string $attributes = '' ]) : string
Generates an HTML unordered list from a single or multidimensional array.
List entries
HTML attributes string, array, object
Ordered List
ol(array<string|int, mixed> $list[, array<string|int, mixed>|object|string $attributes = '' ]) : string
Generates an HTML ordered list from a single or multidimensional array.
List entries
HTML attributes string, array, object
Generates the list
_list([string $type = 'ul' ][, array<string|int, mixed> $list = [] ][, array<string|int, mixed>|object|string $attributes = '' ][, int $depth = 0 ]) : string
Generates an HTML ordered list from a single or multidimensional array.
List entries
HTML attributes string, array, object
Image
img([array<string|int, mixed>|string $src = '' ][, bool $indexPage = false ][, array<string|int, mixed>|object|string $attributes = '' ]) : string
Generates an image element
Image source URI, or array of attributes and values
Should Config\App::$indexPage
be added to the source path
Additional HTML attributes
Image (data)
img_data(string $path[, string|null $mime = null ]) : string
Generates a src-ready string from an image using the "data:" protocol
Image source path
MIME type to use, or null to guess
Doctype
doctype([string $type = 'html5' ]) : string
Generates a page document type declaration
Examples of valid options: html5, xhtml-11, xhtml-strict, xhtml-trans, xhtml-frame, html4-strict, html4-trans, and html4-frame. All values are saved in the doctypes config file.
The doctype to be generated
Script
script_tag([array<string|int, mixed>|string $src = '' ][, bool $indexPage = false ]) : string
Generates link to a JS file
Script source or an array of attributes
Should Config\App::$indexPage
be added to the JS path
Link
link_tag([array<string, bool|string>|string $href = '' ][, string $rel = 'stylesheet' ][, string $type = 'text/css' ][, string $title = '' ][, string $media = '' ][, bool $indexPage = false ][, string $hreflang = '' ]) : string
Generates link tag
Stylesheet href or an array
Should Config\App::$indexPage
be added to the CSS path.
Video
video(array<string|int, mixed>|string $src[, string $unsupportedMessage = '' ][, string $attributes = '' ][, array<string|int, mixed> $tracks = [] ][, bool $indexPage = false ]) : string
Generates a video element to embed videos. The video element can contain one or more video sources
Either a source string or an array of sources
The message to display if the media tag is not supported by the browser
HTML attributes
Should Config\App::$indexPage
be added to the source path
Audio
audio(array<string|int, mixed>|string $src[, string $unsupportedMessage = '' ][, string $attributes = '' ][, array<string|int, mixed> $tracks = [] ][, bool $indexPage = false ]) : string
Generates an audio element to embed sounds
Either a source string or an array of sources
The message to display if the media tag is not supported by the browser.
HTML attributes
Should Config\App::$indexPage
be added to the source path
Generate media based tag
_media(string $name[, array<string|int, mixed> $types = [] ][, string $unsupportedMessage = '' ][, string $attributes = '' ][, array<string|int, mixed> $tracks = [] ]) : string
The message to display if the media tag is not supported by the browser.
Source
source(string $src[, string $type = 'unknown' ][, string $attributes = '' ][, bool $indexPage = false ]) : string
Generates a source element that specifies multiple media resources for either audio or video element
The path of the media resource
The MIME-type of the resource with optional codecs parameters
HTML attributes
Should Config\App::$indexPage
be added to the source path
Track
track(string $src, string $kind, string $srcLanguage, string $label) : string
Generates a track element to specify timed tracks. The tracks are formatted in WebVTT format.
The path of the .VTT file
How the text track is meant to be used
Language of the track text data
A user-readable title of the text track
Object
object(string $data[, string $type = 'unknown' ][, string $attributes = '' ][, array<string|int, mixed> $params = [] ][, bool $indexPage = false ]) : string
Generates an object element that represents the media as either image or a resource plugin such as audio, video, Java applets, ActiveX, PDF and Flash
A resource URL
Content-type of the resource
HTML attributes
Should Config\App::$indexPage
be added to the data path
Param
param(string $name, string $value[, string $type = 'ref' ][, string $attributes = '' ]) : string
Generates a param element that defines parameters for the object element.
The name of the parameter
The value of the parameter
The MIME-type
HTML attributes
Embed
embed(string $src[, string $type = 'unknown' ][, string $attributes = '' ][, bool $indexPage = false ]) : string
Generates an embed element
The path of the resource to embed
MIME-type
HTML attributes
Should Config\App::$indexPage
be added to the source path
Test the protocol of a URI.
_has_protocol(string $url) : false|int
Provide space indenting.
_space_indent([int $depth = 2 ]) : string
Singular
singular(string $string) : string
Takes a plural word and makes it singular
Input string
Plural
plural(string $string) : string
Takes a singular word and makes it plural
Input string
Counted
counted(int $count, string $string) : string
Takes a number and a word to return the plural or not E.g. 0 cats, 1 cat, 2 cats, ...
Number of items
Input string
Camelize
camelize(string $string) : string
Takes multiple words separated by spaces or underscores and converts them to camel case.
Input string
Pascalize
pascalize(string $string) : string
Takes multiple words separated by spaces or underscores and converts them to Pascal case, which is camel case with an uppercase first letter.
Input string
Underscore
underscore(string $string) : string
Takes multiple words separated by spaces and underscores them
Input string
Decamelize
decamelize(string $string) : string
Takes multiple words separated by camel case and underscores them.
Input string
Humanize
humanize(string $string[, string $separator = '_' ]) : string
Takes multiple words separated by the separator, camelizes and changes them to spaces
Input string
Input separator
Checks if the given word has a plural version.
is_pluralizable(string $word) : bool
Word to check
Replaces underscores with dashes in the string.
dasherize(string $string) : string
Input string
Returns the suffix that should be added to a number to denote the position in an ordered sequence such as 1st, 2nd, 3rd, 4th.
ordinal(int $integer) : string
The integer to determine the suffix
Turns a number into an ordinal string used to denote the position in an ordered sequence such as 1st, 2nd, 3rd, 4th.
ordinalize(int $integer) : string
The integer to ordinalize
dd function
dd(array<string|int, mixed> ...$vars) : int
d function
d(array<string|int, mixed> ...$vars) : int
trace function
trace() : int
Formats a numbers as bytes, based on size, and adds the appropriate suffix
number_to_size(int|string $num[, int $precision = 1 ][, non-empty-string|null $locale = null ]) : bool|string
Will be cast as int
[optional]
Converts numbers to a more readable representation when dealing with very large numbers (in the thousands or above), up to the quadrillions, because you won't often deal with numbers larger than that.
number_to_amount(int|string $num[, int $precision = 0 ][, non-empty-string|null $locale = null ]) : bool|string
It uses the "short form" numbering system as this is most commonly used within most English-speaking countries today.
Will be cast as int
[optional] The optional number of decimal digits to round to.
[optional]
number_to_currency(float $num, string $currency[, string|null $locale = null ][, int $fraction = 0 ]) : string
A general purpose, locale-aware, number_format method.
format_number(float $num[, int $precision = 1 ][, string|null $locale = null ][, array<string|int, mixed> $options = [] ]) : string
Used by all of the functions of the number_helper.
Convert a number to a roman numeral.
number_to_roman(int|string $num) : string|null
it will convert to int
Sanitize a filename to use in a URI.
sanitize_filename(string $filename) : string
Strip Image Tags
strip_image_tags(string $str) : string
Convert PHP tags to entities
encode_php_tags(string $str) : string
Creates a single item using Fabricator.
fake(Model|object|string $model[, array<string|int, mixed>|null $overrides = null ][, bool $persist = true ]) : array<string|int, mixed>|object
Instance or name of the model
Overriding data to pass to Fabricator::setOverrides()
Used within our test suite to mock certain system tools.
mock(string $className) : object
Fully qualified class name
Word Limiter
word_limiter(string $str[, int $limit = 100 ][, string $endChar = '…' ]) : string
Limits a string to X number of words.
the end character. Usually an ellipsis
Character Limiter
character_limiter(string $str[, int $n = 500 ][, string $endChar = '…' ]) : string
Limits the string based on the character count. Preserves complete words so the character count may not be exactly as specified.
the end character. Usually an ellipsis
High ASCII to Entities
ascii_to_entities(string $str) : string
Converts high ASCII text and MS Word special characters to character entities
Entities to ASCII
entities_to_ascii(string $str[, bool $all = true ]) : string
Converts character entities back to ASCII
Word Censoring Function
word_censor(string $str, array<string|int, mixed> $censored[, string $replacement = '' ]) : string
Supply a string and an array of disallowed words and any matched words will be converted to #### or to the replacement word you've submitted.
the text string
the array of censored words
the optional replacement value
Code Highlighter
highlight_code(string $str) : string
Colorizes code strings
the text string
Phrase Highlighter
highlight_phrase(string $str, string $phrase[, string $tagOpen = '<mark>' ][, string $tagClose = '</mark>' ]) : string
Highlights a phrase within a text string
the text string
the phrase you'd like to highlight
the opening tag to precede the phrase with
the closing tag to end the phrase with
Convert Accented Foreign Characters to ASCII
convert_accented_characters(string $str) : string
Input string
Word Wrap
word_wrap(string $str[, int $charlim = 76 ]) : string
Wraps text at the specified character. Maintains the integrity of words. Anything placed between {unwrap}{/unwrap} will not be word wrapped, nor will URLs.
the text string
= 76 the number of characters to wrap at
Ellipsize String
ellipsize(string $str, int $maxLength[, float|int $position = 1 ][, string $ellipsis = '…' ]) : string
This function will strip tags from a string, split it at its max_length and ellipsize
String to ellipsize
Max length of string
int (1|0) or float, .5, .2, etc for position to split
ellipsis ; Default '...'
Ellipsized string
Strip Slashes
strip_slashes(array<string|int, mixed>|string $str) : array<string|int, mixed>|string
Removes slashes contained in a string or in an array
string or array
string or array
Strip Quotes
strip_quotes(string $str) : string
Removes single and double quotes from a string
Quotes to Entities
quotes_to_entities(string $str) : string
Converts single and double quotes to entities
Reduce Double Slashes
reduce_double_slashes(string $str) : string
Converts double slashes in a string to a single slash, except those found in http://
http://www.some-site.com//index.php
becomes:
http://www.some-site.com/index.php
Reduce Multiples
reduce_multiples(string $str[, string $character = ',' ][, bool $trim = false ]) : string
Reduces multiple instances of a particular character. Example:
Fred, Bill,, Joe, Jimmy
becomes:
Fred, Bill, Joe, Jimmy
the character you wish to reduce
TRUE/FALSE - whether to trim the character from the beginning/end
Create a Random String
The type 'basic', 'md5', and 'sha1' are deprecated. They are not cryptographically secure.
random_string([string $type = 'alnum' ][, int $len = 8 ]) : string
Useful for generating passwords or hashes.
Type of random string. basic, alpha, alnum, numeric, nozero, md5, sha1, and crypto
Number of characters
Add's _1 to a string or increment the ending number to allow _2, _3, etc
increment_string(string $str[, string $separator = '_' ][, int $first = 1 ]) : string
Required
What should the duplicate number be appended with
Which number should be used for the first dupe increment
Alternator
alternator(string ...$args) : string
Allows strings to be alternated. See docs...
(as many parameters as needed)
Excerpt.
excerpt(string $text[, string $phrase = null ][, int $radius = 100 ][, string $ellipsis = '...' ]) : string
Allows to extract a piece of text surrounding a word or phrase.
String to search the phrase
Phrase that will be searched for.
The amount of characters returned around the phrase.
Ending that will be appended
If no $phrase is passed, will generate an excerpt of $radius characters from the beginning of $text.
Returns a site URL as defined by the App config.
site_url([array<string|int, mixed>|string $relativePath = '' ][, string|null $scheme = null ][, App|null $config = null ]) : string
URI string or array of URI segments.
URI scheme. E.g., http, ftp. If empty string '' is set, a protocol-relative link is returned.
Alternate configuration to use.
Returns the base URL as defined by the App config.
base_url([array<string|int, mixed>|string $relativePath = '' ][, string|null $scheme = null ]) : string
Base URLs are trimmed site URLs without the index page.
URI string or array of URI segments.
URI scheme. E.g., http, ftp. If empty string '' is set, a protocol-relative link is returned.
Returns the current full URL based on the Config\App settings and IncomingRequest.
current_url([bool $returnObject = false ][, IncomingRequest|null $request = null ]) : string|URI
True to return an object instead of a string
A request to use when retrieving the path
When returning string, the query and fragment parts are removed. When returning URI, the query and fragment parts are preserved.
Returns the previous URL the current visitor was on. For security reasons we first check in a saved session variable, if it exists, and use that.
previous_url([bool $returnObject = false ]) : string|URI
If that's not available, however, we'll use a sanitized url from $_SERVER['HTTP_REFERER'] which can be set by the user so is untrusted and not set by certain browsers/servers.
URL String
uri_string() : string
Returns the path part (relative to baseURL) of the current URL
Index page
index_page([App|null $altConfig = null ]) : string
Returns the "index_page" from your config file
Alternate configuration to use
Anchor Link
anchor([array<string|int, mixed>|string $uri = '' ][, string $title = '' ][, array<string|int, mixed>|object|string $attributes = '' ][, App|null $altConfig = null ]) : string
Creates an anchor based on the local URL.
URI string or array of URI segments
The link title
Any attributes
Alternate configuration to use
Anchor Link - Pop-up version
anchor_popup([string $uri = '' ][, string $title = '' ][, array<string|int, mixed>|false|object|string $attributes = false ][, App|null $altConfig = null ]) : string
Creates an anchor based on the local URL. The link opens a new window based on the attributes specified.
the URL
the link title
any attributes
Alternate configuration to use
Mailto Link
mailto(string $email[, string $title = '' ][, array<string|int, mixed>|object|string $attributes = '' ]) : string
the email address
the link title
any attributes
Encoded Mailto Link
safe_mailto(string $email[, string $title = '' ][, array<string|int, mixed>|object|string $attributes = '' ]) : string
Create a spam-protected mailto link written in Javascript
the email address
the link title
any attributes
Auto-linker
auto_link(string $str[, string $type = 'both' ][, bool $popup = false ]) : string
Automatically links URL and Email addresses. Note: There's a bit of extra code here to deal with URLs or emails that end in a period. We'll strip these off and add them after the link.
the string
the type: email, url, or both
whether to create pop-up links
Prep URL - Simply adds the http:// or https:// part if no scheme is included.
prep_url([string $str = '' ][, bool $secure = false ]) : string
Formerly used URI, but that does not play nicely with URIs missing the scheme.
the URL
set true if you want to force https://
Create URL Title
url_title(string $str[, string $separator = '-' ][, bool $lowercase = false ]) : string
Takes a "title" string as input and creates a human-friendly URL string with a "separator" string as the word separator.
Input string
Word separator (usually '-' or '_')
Whether to transform the output string to lowercase
Create URL Title that takes into account accented characters
mb_url_title(string $str[, string $separator = '-' ][, bool $lowercase = false ]) : string
Takes a "title" string as input and creates a human-friendly URL string with a "separator" string as the word separator.
Input string
Word separator (usually '-' or '_')
Whether to transform the output string to lowercase
Get the full, absolute URL to a route name or controller method (with additional arguments)
url_to(string $controller, int|string ...$args) : string
NOTE: This requires the controller/method to have a route defined in the routes Config file.
Route name or Controller::method
One or more parameters to be passed to the route. The last parameter allows you to set the locale.
Determines if current url path contains the given path. It may contain a wildcard (*) which will allow any valid character.
url_is(string $path) : bool
Example: if (url_is('admin*')) ...
Convert Reserved XML characters to Entities
xml_convert(string $str[, bool $protectAll = false ]) : string
Is CLI?
is_cli([bool $newReturn = null ]) : bool
Test to see if a request was made from the command line. You can set the return value for testing.
return value to set