I'm just curious. In PHP, why wasn't echo
implemented as a function? Why didn't PHP just give us printf
and never tell about echo
? Please note that:
- This is not a question about
echo
vs.printf
. - I already knew that
echo
is a language construct.
UPDATE: By the way, was printf
implemented using echo
?