> I have a string something like "10.2.3"
 > I want to be able to use the "." as a delimiter to reference 
 > the elements (10, 2, and 3).

 > My thought was to create an array, using "." as the 
 > delimiter. Is there a function that will create an array out 
 > of a string, using a delimiter you specify?

$my_array = explode(".", "10.2.3");

--
----------------------------------------------------------------------
Outback Queensland Internet                   ************************
Longreach                                     ** New Web Site Online *
Queensland                                    ************************
Australia                                     W: www.outbackqld.net.au


-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to