PHP Digest No. 154 (April 9 - 21, 2019)


    Fresh selection with links to news and materials. In the release: Zend Framework goes under the wing of the Linux Foundation, news from PHP Internals, a portion of useful tools, and much more.

    Enjoy reading!



    News and Releases



    PHP internals


    • [RFC] Arrow Functions 2.0 - Voting on short lambdas has started and the voting process is encouraging. The syntax remains the same: fn($x) => $x * $y .
    • [RFC] Deprecate left-associative ternary operator - In almost all languages, the ternary operator is evaluated from right to left, but in PHP, on the contrary. It is proposed to abolish left associativity altogether, and if it is necessary to use several ternary operators, then explicitly indicate the order with parentheses.
      1 ? 2 : 3 ? 4 : 5;   // deprecated
      (1 ? 2 : 3) ? 4 : 5; // ok
      1 ? 2 : (3 ? 4 : 5); // ok
      
    • audioPHP Internals News # 5 - On List Inclusions with RFC author Larry Garfield.
    • audioPHP Internals News # 6 - Interview with Remi Collet, PHP 7.2 release manager on PHP quality assurance and extensions.

    Instruments



    Symfony



    Laravel



    Yii


    • Yii Quick Release Cycle - The main framework will be released approximately once a month, and extensions will be updated every week if there have been changes since previous releases.

    Learning Materials




    Entertaining



    Thanks for attention!

    If you notice a mistake or inaccuracy - please inform me in PM .
    Questions and suggestions write to mail or twitter .

    More news and comments on the PHP Digest Telegram Channel .

    Send link
    Search links for all digests
    Previous release: PHP Digest No. 153


    Also popular now: