Universeorange.com/Docs/

R3m/framework Function reference explode

{explode(String $separator , String $string , Int $limit = PHP_INT_MAX)}

{explode()} — Split a string by a string.

Returns an array of strings, each of which is a substring of string formed by splitting it on boundaries formed by the string separator.

Returns an array of strings created by splitting the string parameter on boundaries formed by the separator.
If separator is an empty string (""), explode() will return false.
If separator contains a value that is not contained in string, and a negative limit is used, then an empty array will be returned, otherwise an array containing string will be returned.
If separator values appear at the start or end of string, said values will be added as an empty array value either in the first or last position of the returned array respectively.

More information:

https://www.php.net/manual/en/function.explode.php

Last modified: 2021-06-07

© 2021 universeorange.com