Q. What will be the output of the following PHP code?
Code:<?php $score = 1234; $scoreboard = (array) $score; echo $scoreboard[0]; ?>
β
Correct Answer: (C)
1234
<?php $score = 1234; $scoreboard = (array) $score; echo $scoreboard[0]; ?>
You must be Logged in to update hint/solution