<?php error_reporting(E_ALL & ~E_NOTICE); $foo = array("bar" => "baz", "null" => "void"); print_r($foo[bar]); //this works, as it will assume $foo["bar"] print_r($foo[null]); //null is a defined constant, so it will look for a value with an empty key which is not defined
You have javascript disabled. You will not be able to edit any code.