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 ? Quote 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; } Quote 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 Quote Link to comment https://forums.phpfreaks.com/topic/83266-solved-string-separating/#findComment-423596 Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.