PHP Arrays
What elements will the following script output?
$array = array (true => 'a', 1 => 'b');
var_dump ($array);

It will output NULL
1 => 'b'
True => 'a', 1 => 'b'
None

ANSWER DOWNLOAD EXAMIANS APP