Op dinsdag 13 augustus 2002 20:50, schreef Alexander Ross:
> If I have a string variable that is already of the form
> ('item','item2','item3') [including the parens and quotes in the string],
> is there an easy way to change that variable into an array??
> Array($var) doesn't work. Thanks
<?
$var="('item1','item2','item3')";
$array=explode(',',str_replace(array('(',')','\''),'',$var));
?>-- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

