为了避免 notice,想出一种奇怪的写法,比如要 echo $a["b"],而 $a 可能没有 "b" 这个 key,甚至 $a 都有可能不存在,那要直接 echo 会 notice: undefined variable,只好写成 echo $c =& $a["b"] ?! "";