PHP

Buy me a beer or a book?

amazon PayPal - The safer, easier way to donate online!

Looping through variables using concatenation with PHP

Recently a friend was given the task of ordering a group of variables that would be similiar to this:

 

Group of ordered PHP variables
1
2
3
4
$var1 = 10;
$var2 = 20;
$var3 = 30;
$var4 = 40


As you can see these items are not in array, and although it would be a best practice to have the group in array these are unchangeable, possibly an output from an existing system. What does need to be done is place them into an array using concatenation and a simple loop. Below is the loop to do such:

 

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
//Denotes that the group of vars starts at 1 i.e. $var1
$x=1;
//this specifies the first part of the var name
$varname= 'var';
//using the concatonation on a variable name, and checking if it exists
while (isset(${$varname.$x}) && $tmparr = ${$varname.$x})
{
//the pre-assigned $tmpvar from the loop is then placed into an array
$theArray[$x-1] = $tmpvar;
//increments for the next loop so $var2 is used instead of $var1 repeatedly
$x++;
}
 
//this will then output your populated array.
print_r($theArray);
 

This will output a nice array of items, which you can now use and manipulate a lot easier than the original group of variables.
  • Di-Du lv

    Posted at 2013-03-27 19:51:40

    |

    Reply to comment

  • mulberry-sale-outlet.co.uk/mulberry-sale.html

    Posted at 2012-09-24 19:35:18

    I was looking for some topics that are enough popular and finally founded your blog, it has superb topics with great popularity.mulberry-sale-outlet.co.uk/mulberry-sale.html

    Reply to comment

  • mulberry-sale-outlet.co.uk/mulberry-sale.html

    Posted at 2012-09-24 19:23:41

    I was looking for some topics that are enough popular and finally founded your blog, it has superb topics with great popularity.mulberry-sale-outlet.co.uk/mulberry-sale.html

    Reply to comment

  • windows vista to windows 7 upgrade

    Posted at 2012-08-08 18:21:26

    well, Really your post is really very good and I appreciate it..I enjoyed reading your article and found it to be informative and to the point..
    windows vista to windows 7 upgrade

    Reply to comment

  • bioidentical hormone replacement therapy

    Posted at 2012-07-02 15:00:21

    I like your post. It is good to see you verbalize from the heart and clarity on this important subject can be easily observed.bioidentical hormone replacement therapy

    Reply to comment

  • Online Games Review

    Posted at 2012-06-05 16:28:44

    Thanks for sharing this useful information.
    Online Games Review

    Reply to comment

  • johnlevis

    Posted at 2012-05-10 19:36:31

    Very good article thanks for all the great infomation on your website concord california florist

    Reply to comment

  • lawn rolling rochester ny

    Posted at 2012-03-05 15:44:07

    hey buddy,this is one of the best posts that I’ve ever seen; you may include some more ideas in the same theme. I’m still waiting for some interesting thoughts from your side in your next post
    lawn rolling rochester ny

    Reply to comment

  • Firstrowstart

    Posted at 2012-01-21 21:14:59

    Your knowledge of this subject comes through clearly in this article. I love to read this kind of articles, I hope you will update it. Thank you for sharing it with me.
    honda car insurance

    Reply to comment

    • farooq

      Posted at 2012-04-18 21:50:21

      Thanks for sharing. i really appreciate it that you shared with us such a informative post... Baseball Umpire videos

      Reply to comment

    • thomasfernandus

      Posted at 2012-02-08 05:35:46

      I could tell how great you are in your field of interest. You could relate in each detail very well
      dissertation writers

      Reply to comment

  • Happprze

    Posted at 2012-01-16 23:15:18

    I have been interested in this topic for quite some time. I have been researching it for a couple of hours and found your post to be very interesting. Cheers.
    Presentation Coaching

    Reply to comment

Post your comments...

Free Downloads