explode
explode
PHP Version Number
Fri, 06/25/2010 - 23:55 | by philipnorton42Different functions and options are always being added to PHP. Although new versions generally don't create much backward compatibility issues it is usually prudent to write production code that you know will work on servers running a slightly older version of the language.
Using list() With explode() In PHP
Tue, 09/08/2009 - 20:42 | by philipnorton42A simple way to convert a string into a set of variables is through the use of the explode() and list() functions. list() is a language construct (not really a function) that will convert an array into a list of variables. For example, to convert a simple array into a set of variables do the following: