PHP » PYTHON |
login |
register |
about
|
myString.split(delimiter) myString.split(delimiter, limit) # Sample import string arabalar = "bmw ferrari corvette ford golf" explode = string.split(" ", arabalar) explode[0] #-> 'bmw' explode[4] #-> 'golf' explode(PHP 4, PHP 5) explode — Split a string by string Description
array explode
( string $delimiter
, string $string
[, int $limit= -1
] )
Returns an array of strings, each of which is a substring of string formed by splitting it on boundaries formed by the string delimiter . Parameters
Although implode() can, for historical reasons, accept its parameters in either order, explode() cannot. You must ensure that the delimiter argument comes before the string argument. Return ValuesIf delimiter is an empty string (""), explode() will return FALSE. If delimiter contains a value that is not contained in string , then explode() will return an array containing string . Changelog
Examples
Example #1 explode() examples
<?php
Example #2 limit parameter examples
<?phpThe above example will output:
Array
(
[0] => one
[1] => two|three|four
)
Array
(
[0] => one
[1] => two
[2] => three
)
Notes
See Also
|
more
Recently updated
more
Most requested
|