Discussion :: PHP - CS
-
What will be the output of the following PHP code ?
<?php
echo "This","was"|"a","bad"."idea";
?>
Answer : Option B
Explanation :
You can use only comma and dot operator to join starings, other characters do not have the same function.
Be The First To Comment