PHP Basics: Language Construct
In this section of the Zend PHP 5 Certification Blog I will be refreshing my knowledge of language constructs, not to be confused with functions! even though they look like them. You should already know of or know how to use these.
Define: Language Construct
A language construct is a syntactically allowable part of a program that may be formed from one or more lexical tokens in accordance with the rules of a programming language.
In PHP they have made Language Construct look like functions, this is to ease simplicity when learning PHP. We should be aware that those listed bellow are “Language Constructs”
(more…)

