The following code outputs 43211, why?
echo print('3').'2'.print('4');
|
|
|
Your statement parses to humans as follows. Echo a concatenated string composed of:
Now, the order of operations is really funny here, that can't end up with
This yields PHP is parsing that, then, as:
Bingo! The
Then the left
Success. Let's break down your statement of weirdness.
This will print the
Then the next print statement is evaluated, which means we've now printed
Thus, I would highly suggest not Upon further review, I'm actually not entirely sure how PHP is parsing either of these bits of nonsense. I'm not going to think about it any further, it hurts my brain. |
|||||||||||||||||
|
|
On the documentation
You should just probably stick to using |
|||||
|
|
|
Much of the confusion is due to the placement of parentheses around the arguments to Evaluation order Let's remove the parentheses first:
And illustrate the actual order of evaluation:
In the heart of this you will find a concatenation of strings or string representations; this is evaluated first:
The first two elements are concatenated:
Then, the value of
This concludes the first step. The second step passes the temporary results to another
As before,
Proof You can confirm this behaviour when you look at the opcodes that are generated (output column is added for clarity):
Explanation
|
||||
|
|
|
You are using a function within a function as alex said. Just simply use echo or print.
will return properly or likewise for print. |
|||||||
|