Can anybody tell the internal procedure of the below expression?
<?php echo '2' . print(2) + 3; ?>
// outputs 521
|
Can anybody tell the internal procedure of the below expression?
|
|||||||||||||||||||||
|
This question is unlikely to help any future visitors; it is only relevant to a small geographic area, a specific moment in time, or an extraordinarily narrow situation that is not generally applicable to the worldwide audience of the internet. For help making this question more broadly applicable, see the FAQ.
|
Echo a concatenated string composed of: The string '2' The result of the function print('2'), which will return true, which gets stringified to 1 The string '3' Now, the order of operations is really funny here, that can't end up with 521 at all! Let's try a variant to figure out what's going wrong. echo '2'.print(2) + 3; This yields 521 PHP is parsing that, then, as: echo '2' . (print('2') + '3')) Bingo! The print on the left get evaluated first, printing '5', which leaves us echo '1' . print('2') Then the left print gets evaluated, so we've now printed '52', leaving us with echo '1' . '1' ; Success. 521. I would highly suggest not echoing the result of a print, nor printing the results of an echo. Doing so is highly nonsensical to begin with. |
|||
|
|
|
|
|||||||
|
|
The output so far is:
The output now is: '521' |
||||
|
|
|
First the addition of 2 and 3 is done which results in 5 and that is output. Next print returns |
|||
|
|