PHP Digest number 90 - interesting news, materials and tools (August 1 - 14, 2016)
We offer to your attention another selection with links to news and materials. Enjoy reading!
News and Releases
PHP 7.1.0 Beta 2 - The next beta is expected on August 18 and will be the last before RC1.
CakePHP 3.3.0 - Under the hood, support for PSR-7 Middleware and other improvements.
PHP FIG 3.0 - It is proposed to reform the FIG group for more productive work. A full description of the new structure and processes can be found here .
Olivier Dolbeau and Benjamin De Bernardi, the developers at BlaBlaCar, will tell you how Symfony 2 works and scales with 25+ million users in 22 countries. By the way, at the Symfony Business Awards website BlaBlaCar became the best in 2015;
and many others.
Especially for readers of PHP-Digest is available promo code «PHPDIGEST» with a 15% discount.
immutable classEmail{ public $email; publicfunction__construct($email){ $this->email = $email; } } $email = new Email("foo@php.net"); $email->email = "bar@php.net"// Fatal Error
RFC: Arrow Functions - Last year, the proposal for the short syntax$x ~> $x * 2 for anonymous functions did not pass. An alternative syntax was then proposed, a la EcmaScript 6, but with the addition of the function keyword: function($x) => $x + $y . Now the sentence is updated and the syntax is submitted for consideration: ^(parameter_list) => expr
Book Using Zend Framework 3 - A free open-source book about the new version of Zend Framework for beginners with examples. Russian translation assistance is welcome.