Can anyone please explain to me how this works:
<?php
print 5 . print 6 . print 7;
?>
it prints: 76151
I know the 1 is the return value from the print function, but why are the functions called in reverse order?
Can anyone please explain to me how this works:
<?php
print 5 . print 6 . print 7;
?>
it prints: 76151
I know the 1 is the return value from the print function, but why are the functions called in reverse order?