fork(4) download
  1. <?php
  2. $age = array("Symntha"=>"15", "Clan"=>"17", "Smith"=>"23");
  3. echo "Symntha is " . $age['Symntha'] . " years old.";
  4. ?>
  5.  
Success #stdin #stdout 0.02s 52472KB
stdin
Standard input is empty
stdout
Symntha is 15 years old.