Why php print "b1" in such code -
this question has answer here:
- echo , print statement 4 answers
<?php print("a")."b".print("с"); ?>
result: сab1
why php print "b1" in code
equates to:
- print("c").... output value "c" , return value of 1 indicate success
- print "a", concatenated "b", concatenated result of print("c") (which "1") giving
cab1
Comments
Post a Comment