PHP Gets A Formal Specification |
Written by Ian Elliot | |||
Thursday, 31 July 2014 | |||
Given how important PHP is in terms of its use, it is very surprising to learn that it only now is getting a formal specification after 20 years of use. Languages come about in one of two ways. Either an academic sits down and constructs a language, complete with grammar and formal specification, or an enthusiastic programmer just implements what is needed. In the case of PHP it was an ad hoc language designed to make building web pages easier. As a result it is a bit of a mess and the fact that it has evolved as it has grown in complexity hasn't helped. The specification of the language was essentially its current implementation and the documentation on how to use it. Now a group led by Facebook has created a draft specification which is available on GitHub. The definition includes both syntax and semantics. The group is led by Facebook because the company uses PHP extensively and needs it to be a language capable of logical evolution hence the interest in a formal spec. The group also consists of Rasmus Lerndorf, the man who invented the language in the first place and Andi Gutmans, CEO of Zend the PHP tools vendor. The specification is in easy to read form. For example;
Compound StatementsSyntax compound-statement: { statement-listopt } statement-list: statement statement-list statement statement is defined in ยงยง. Semantics A compound statement allows a group of zero of more statements to be treated syntactically as a single statement. A compound statement is often referred to as a block. Examples
This is clear enough to make it suitable for checking up that you have understood the more informal documentation. There is, of course, the issue of how accurately it reflects the real world of the implementation. If you find a discrepancy at the moment it is the specification that will have to change. In the future the spec could be in charge of what the implementation should do. With the next major version of PHP settled as version 7, and with work on improving the speed of the language in the form of Facebook's HHVM and PHPng, having a fixed reference specification is very necessary for us to know when something deviates from the standard. More InformationAnnouncing a specification for PHP Related ArticlesUpdate: The Next Version Of PHP And The Status Of PHPng PHP Next Generation Project Announced Facebook Introduces Hack, A Better PHP The Reason For The Weird PHP Function Names HipHop VM - Facebook's PHP Virtual Machine To be informed about new articles on I Programmer, install the I Programmer Toolbar, subscribe to the RSS feed, follow us on, Twitter, Facebook, Google+ or Linkedin, or sign up for our weekly newsletter.
Comments
or email your comment to: comments@i-programmer.info
|
|||
Last Updated ( Friday, 01 August 2014 ) |