MadDawgX Posted December 26, 2007 Share Posted December 26, 2007 Hey there, I have a variable storing a string that contains many strings with in it and are separated with *'s. How can i separate these values and store them in there own respective variables Eg. $var = "1*test1*test2*test3" How can I store the value 1 in $sep1 or test3 in $sep4 ? Link to comment https://forums.phpfreaks.com/topic/83266-solved-string-separating/ Share on other sites More sharing options...
p2grace Posted December 26, 2007 Share Posted December 26, 2007 $array = explode("*",$var); extract($array); OR $array = explode("*",$var); foreach($array as $value){ $sep [] = $value; } Link to comment https://forums.phpfreaks.com/topic/83266-solved-string-separating/#findComment-423573 Share on other sites More sharing options...
MadDawgX Posted December 26, 2007 Author Share Posted December 26, 2007 Thanks Link to comment https://forums.phpfreaks.com/topic/83266-solved-string-separating/#findComment-423596 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.