fork(15) download
  1. <?php
  2.  
  3. $array = array(
  4. "chave1" => 1,
  5. "chave2" => "dois",
  6. "chave3" => false
  7. );
  8.  
  9. $array["chave2"] = 2;
  10.  
  11. echo $array["chave2"];
Success #stdin #stdout 0.04s 82880KB
stdin
Standard input is empty
stdout
2