User Tools

Site Tools


uphp:functions:explode

This is an old revision of the document!


explode

WMPRO, WMMINI FW >= 1.0 WMMEGA FW >= 2.0

Turn a string into an array

Description

array explode ( string $value, string delimiter )
Turn a string into an array by separating out the elements as bounded by a delimiter character

Parameters

value: String to be seperated into elements in the array

delimiter: Character to use for separation

Return Value

Array of elements

Example

<? 
$mylist="one,two,three,four";
$myarray=explode($mylist,",");
print_r($myarray);
/* result is:
p0 = ARRAY
STRING 0 => one
STRING 1 => two
STRING 2 => three
STRING 3 => four
*/
?>

See Also

implode() - Turn an array into a string

print_r() - Dump the contents of an array to the current output

sizeof() - Return the number of elements in an array

Additional Information

Note that there is an important difference in the parameter order between mainline PHP and Wattmon uPHP. In the mainline PHP function the delimiter comes first, but in uPHP the string to be exploded comes first:

PHP explode(delimiter,string)

uPHP explode(string,delimiter)

uphp/functions/explode.1487681642.txt.gz · Last modified: 2021/09/13 05:56 (external edit)