fork download
  1. <?php
  2. $v = ['a' => '1'];
  3. $a = 'a';
  4. var_dump($v["$a"]);
  5. var_dump($v['$a']);
  6.  
Success #stdin #stdout #stderr 0.01s 20568KB
stdin
Standard input is empty
stdout
string(1) "1"
NULL
stderr
PHP Notice:  Undefined index: $a in /home/J8o8si/prog.php on line 5