Important alert: (current site time 7/15/2013 10:11:51 AM EDT)
 

VB icon

Asociative array to global variables

Email
Submitted on: 10/29/2000 1:09:09 PM
By: PHP Code Exchange  
Level: Beginner
User Rating: Unrated
Compatibility: PHP 3.0, PHP 4.0
Views: 13696
 
     By Ondra Zizka. Takes an asociative array and defines variables named by arr's field names, opt. suffixes and preffixes. arr["hi"]=="there";
arr2vars($arr, "say_", "_1");
//-> $say_hi_1=="there"

 
code:
Can't Copy and Paste this?
Click here for a copy-and-paste friendly version of this code!
				
//**************************************
// Name: Asociative array to global variables
// Description:By Ondra Zizka. Takes an asociative array and defines variables named by arr's field names, opt. suffixes and preffixes. arr["hi"]=="there"; <br> arr2vars($arr, "say_", "_1"); <br> //-> $say_hi_1=="there" <br>
// By: PHP Code Exchange
//**************************************

<?
function arr2vars($arr, $pref="", $suff=""){
 while (list($xkey, $val) = each($arr)){
//global ${$pref.$xkey.$suff};
	eval("global \$$pref$xkey$suff;");
	${$pref.$xkey.$suff} = $val;
 }
}
/* use:
$arr = Array("ahoj"=>"lidi", "jakse"=>"mate");
arr2vars($arr);
echo $ahoj;
*/
?>


Other 192 submission(s) by this author

 


Report Bad Submission
Use this form to tell us if this entry should be deleted (i.e contains no code, is a virus, etc.).
This submission should be removed because:

Your Vote

What do you think of this code (in the Beginner category)?
(The code with your highest vote will win this month's coding contest!)
Excellent  Good  Average  Below Average  Poor (See voting log ...)
 

Other User Comments


 There are no comments on this submission.
 

Add Your Feedback
Your feedback will be posted below and an email sent to the author. Please remember that the author was kind enough to share this with you, so any criticisms must be stated politely, or they will be deleted. (For feedback not related to this particular code, please click here instead.)
 

To post feedback, first please login.