fork(13) download
  1. <?php
  2.  
  3. $masina = "Chevrolet";
  4. $avion = "Boeing";
  5. $tren = "TGV";
  6.  
  7.  
  8. $obiect = 'masina';
  9. print $$obiect; // Chevrolet
  10.  
  11. print "\n<br>\n";
  12.  
  13. $obiect = 'tren';
  14. print ${$obiect}; // TGV
Success #stdin #stdout 0.02s 13064KB
stdin
Standard input is empty
stdout
Chevrolet
<br>
TGV