Tagged Questions
21
votes
4answers
4k views
What is the difference between a language construct and a “built-in” function in PHP?
I know that include, isset, require, print, echo, and some others are not functions but language constructs.
Some of these language constructs need parentheses, others don't.
require 'file.php';
...
4
votes
3answers
147 views
In PHP, why wasn't echo implemented as a function? (not echo vs. printf)
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 ...