Question:What is the output of the following code?<?php $string = "14302"; $string[$string[2]] = "4"; print $string; ?>
<?php $string = "14302"; $string[$string[2]] = "4"; print $string; ?>
A 14304 B 14342 C 44302 D 14402 E Array
+ AnswerB
+ Report