[Solved] How do I write this in a single line of code? [closed]


Please look for PHP String Operators The concatenation operator is . so you need:

echo first() . second() . third();

Look live example

solved How do I write this in a single line of code? [closed]