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

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

ANSWER DOWNLOAD EXAMIANS APP

PHP Arrays
What array will you get if you convert an object to an array?

An array with keys of that object as the array's elements
An array with properties of that object as the array's elements
An array with properties of that object as the Key elements
An array with properties of that array as the object's elements

ANSWER DOWNLOAD EXAMIANS APP