1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 | <?php function test() { echo "1 "; return "2 "; } echo test() . test(); echo "\n"; echo test(), test(); echo "\n"; // Output: // 1 1 2 2 // 1 2 1 2 |
Direct link: https://paste.plurk.com/show/1464734
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 | <?php function test() { echo "1 "; return "2 "; } echo test() . test(); echo "\n"; echo test(), test(); echo "\n"; // Output: // 1 1 2 2 // 1 2 1 2 |