Discussion :: PHP - CS
-
What will be the output of the following PHP code ?
<?php
print("this"."was"."a"."bad"."idea");
?>
Answer : Option A
Explanation :
You can use the dot operator like in echo but you can not use the comma operator to do the same.
Be The First To Comment