A
Q. What is the result of the following PHP code?
Code:
<?php
$a = array("A","B","C","D","A");
$b = array("A","E","F","D","A");
$c = array_combine($a, $b);
print_r($c);
?>
$a = array("A","B","C","D","A");
$b = array("A","E","F","D","A");
$c = array_combine($a, $b);
print_r($c);
?>
- Correct Answer - Option(B)
- Views: 13
- Filed under category PHP
- Hashtags:
Discusssion
Login to discuss.