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';
...