Language Construct
What is a language construct?
Every programming language consists of tokens and structures which the respective language parser can recognize. So whenever a file is parsed, the parser understands their usage and knows well what to do with them without having the need to examine them further. These tokens and structures are known as a language construct.
Any computer language is made up of basic elements and these elements are known by their respective language parsers these basic elements
are called as language construct.
language construct is keywords of language. They are part of language itself. they can’t define by the user.
Some Example Of Language Construct (PHP):-
1]if
2]echo()
3]include()
4]require()
5]print()
6]isset()
7]die()