explode

 array explode ( string $delimiter , string $string [, int $limit ] ) 

説明

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

戻り値

Returns an array of strings created by splitting the string parameter on boundaries formed by the delimiter. If delimiter is an empty string (""), explode() will return FALSE. If delimiter 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.