I am familiar with how PHP functions are mapped to functions in C in the C code beneath PHP. I know in C what a function means and what a MACRO() means.
I do not understand what is a language construct, like echo, in PHP means.

link|improve this question

73% accept rate
I think it is basically a fancy name for an operator. – alex Jul 9 '11 at 3:38
but, operator is a function, just different syntax. – Itay Moav Jul 9 '11 at 3:40
2  
@Itay Moav: php devs just called some group of tokens "language construct". Just accept it. – zerkms Jul 9 '11 at 3:41
@zerkms - ok, so what is a TOKEN? How do I implement one myself? I have not seen anything about this in any tutorial I could find. I want to implement the token foo that will send a request to the address I give it as parameter. – Itay Moav Jul 9 '11 at 3:44
1  
@Itay Moav: token is a term of parser/compiler. It is an "atom" of AST. I think you need to dive into parsers, compilers and php internals to be able to add some foo. And I'm sure it is not possible to describe all of this by anyone in an answer. – zerkms Jul 9 '11 at 3:45
show 3 more comments
feedback

1 Answer

up vote 1 down vote accepted

"Language constructs" are operations that are supported by special features in the language. In PHP, mostly anything that isn't a variable or a function is a language construct, as referred on the list of keywords page.

As a PHP user, you have no way of implementing new language constructs. Those exist only at the language parser level. It seems your objectives are similar to those of this question, and the answer will be the same.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.