Question:What elements will the following script output?
<?php
$array = array (true => 'a', 1 => 'b');
var_dump ($aray);
?>
 

A 1 => 'b' 

B True => 'a', 1 => 'b' 

C 0 => 'a', 1 => 'b' 

D None 

E It will output NULL 

+ Answer
+ Explanation
+ Report
Total Preview: 1012

Copyright © 2024. Powered by Intellect Software Ltd