Welcome to collectivesolver - Programming & Software Q&A with code examples. A website with trusted programming answers. All programs are tested and work.

Contact: aviboots(AT)netvision.net.il

Buy a domain name - Register cheap domain names from $0.99 - Namecheap

Scalable Hosting That Grows With You

Secure & Reliable Web Hosting, Free Domain, Free SSL, 1-Click WordPress Install, Expert 24/7 Support

Semrush - keyword research tool

Boost your online presence with premium web hosting and servers

Disclosure: My content contains affiliate links.

39,895 questions

51,826 answers

573 users

How to extract keys in the array into new variables with prefix when some of the variables exist in PHP

2 Answers

0 votes
$profession = "Engineer";
$arr = array('name' => "Avi", 'age' => 48, 'profession' => "Programmer");

//EXTR_PREFIX_SAME
//If there is a collision, prefix the variable name with prefix.
extract($arr, EXTR_PREFIX_SAME, "employee");
echo "$name, $age, $profession, $employee_profession <br />"; // Avi, 48, Engineer, Programmer
echo "$name <br />"; // Avi
echo "$age <br />"; // 48
echo "$profession <br />"; // Engineer
echo "$employee_profession <br />"; // Programmer




/*
run: 

Avi, 48, Engineer, Programmer 
Avi 
48 
Engineer 
Programmer 

*/


answered Jun 21, 2014 by avibootz
edited Jun 16, 2016 by avibootz
0 votes
$profession = "Engineer";
unset($profession);
// When the variable $profession not exist we didn't need the EXTR_PREFIX_SAME
$arr = array('name' => "Avi", 'age' => 48, 'profession' => "Programmer");
extract($arr, EXTR_PREFIX_SAME, "employee");
echo "$name, $age, $profession, $employee_profession <br />"; 
echo "$name <br />"; 
echo "$age <br />"; 
echo "$profession <br />"; 
echo "$employee_profession <br />"; 


/*
run: 


Notice: Undefined variable: employee_profession in C:\xampp\htdocs\knowrex.com\test.php on line 14
Avi, 48, Programmer, 
Avi 
48 
Programmer 

Notice: Undefined variable: employee_profession in C:\xampp\htdocs\knowrex.com\test.php on line 18

*/

 



answered Jun 16, 2016 by avibootz
...