Separate text

This is a discussion on Separate text within the PHP General forums, part of the PHP Programming Forums category; Lo, I have a variable $groups. I can contain a single number like $groups=1. But It also can contain ...


Go Back   Usenet Forums > PHP Programming Forums > PHP General

FAQ Members List Calendar Search Today's Posts Mark Forums Read
  #1 (permalink)  
Old 05-15-2005
Bertman
 
Posts: n/a
Default Separate text

Lo,

I have a variable $groups. I can contain a single number like $groups=1. But
It also can contain more numbers like $groups=1,4,3. I need to separate the
numbers and put them in a kind off array.
Something like:
$groups[1] = 1
$groups[2] = 4
$groups[3] = 3

Anybody an idea ?

Bert


Reply With Quote
  #2 (permalink)  
Old 05-15-2005
Pro N00b
 
Posts: n/a
Default Re: Separate text

Bertman wrote:
> Lo,
>
> I have a variable $groups. I can contain a single number like $groups=1. But
> It also can contain more numbers like $groups=1,4,3. I need to separate the
> numbers and put them in a kind off array.
> Something like:
> $groups[1] = 1
> $groups[2] = 4
> $groups[3] = 3
>
> Anybody an idea ?


I wouldn't make a exception if there's only one number, just always use
an array.
$groups = array(1); // first example
$groups = array(1, 4, 3); // second example

But I don't really get your problem?
Reply With Quote
  #3 (permalink)  
Old 05-15-2005
Ken Robinson
 
Posts: n/a
Default Re: Separate text


Bertman wrote:
> Lo,
>
> I have a variable $groups. I can contain a single number like

$groups=1. But
> It also can contain more numbers like $groups=1,4,3. I need to

separate the
> numbers and put them in a kind off array.
> Something like:
> $groups[1] = 1
> $groups[2] = 4
> $groups[3] = 3


Use the explode() function <http://www.php.net/explode>

<?
$groups ='1,4,3';
$groups_ary = explode(',',$groups);
print_r($groups);
?>

Ken

Reply With Quote
Reply
Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are Off
[IMG] code is Off
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On



All times are GMT +1. The time now is 11:31 PM.


Powered by vBulletin® Version 3.7.3
Copyright ©2000 - 2008, Jelsoft Enterprises Ltd.
Content Relevant URLs by vBSEO 3.0.0