What Will Be The Output Of The Following Php Codep Pre Langphp #56
What will be the output of the following PHP code?</p> <pre><code class="language-php" line="1"> <?php $city_west = array("NYC", "London"); $city_east = array("Mumbai", "Beijing"); print_r(array_replace($city_west, $city_east)); ?> </code></pre>
This multiple choice question (MCQ) is related to the book/course gs gs107 PHP: Hypertext Preprocessor. It can also be found in gs gs107 PHP Array - PHP Array - Quiz No.3.
What will be the output of the following PHP code?
<?php $city_west = array("NYC", "London"); $city_east = array("Mumbai", "Beijing"); print_r(array_replace($city_west, $city_east)); ?>
Array ( [1] => Mumbai [0] => Beijing )
Array ( [0] => NYC [1] => London )
Array ( [1] => NYC [0] => London )
Array ( [0] => Mumbai [1] => Beijing )