fork download
  1. <?php
  2.  
  3. $array = array(
  4. "chave1" => 1, “dois”, false
  5.  
  6. );
  7.  
  8.  
  9. echo $array [“chave1”];
  10.  
Success #stdin #stdout #stderr 0.03s 25948KB
stdin
Standard input is empty
stdout
Standard output is empty
stderr
PHP Warning:  Use of undefined constant “dois” - assumed '“dois”' (this will throw an Error in a future version of PHP) in /home/53vc2N/prog.php on line 4
PHP Warning:  Use of undefined constant “chave1” - assumed '“chave1”' (this will throw an Error in a future version of PHP) in /home/53vc2N/prog.php on line 9
PHP Notice:  Undefined index: “chave1” in /home/53vc2N/prog.php on line 9