Mega Code Archive

 
Categories / Php / Operator
 

Variables Are Assigned by Value

<html> <head> <title>Variables are assigned by value</title> </head> <body> <?php $aVariable = 42; $anotherVariable = $aVariable; $aVariable = 325; print $anotherVariable; ?>  </body> </html>