Back to Home

PHP Digest No. 82 - interesting news, materials and tools (March 14 - 27, 2016) / Zfort Group blog

digest · news · selection · links · web development · PHP · Symfony · Yii 2 · Laravel · Composer · PHP 7

PHP Digest No. 82 - interesting news, materials and tools (March 14 - 27, 2016)



    We bring to your attention the next selection with links to news and materials.

    Enjoy reading!


    News and Releases




    Php


    • RFC: Typed Properties - It is proposed to implement typed properties:
      class Foo {
        public int $int = 1;
        public float $flt = 2.2;
        public array $arr = [];
        public bool $bool = false;
        public string $string;
        public callable $callable;
        public stdClass $std;
        public OtherThing $other;
        public $mixed;
      }
      
    • PHP RFC Tracker - The resource aggregates information for all RFCs, and contributor statistics are also available.
    • php.internals: Add spaceship assignment operator - An ironic message from Nikita Popov regarding proposals to add the ?? = and ?: = operators . For consistency, Nikita suggests adding the following abbreviated operators:
      $a <=>= $b;
      // эквивалентно
      $a = ($a <=> $b);
      $a ==== $b;
      // эквивалентно
      $a = ($a === $b);
      


    Instruments




    Learning Materials




    Audio and video




    Entertaining




    Thanks for attention!

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

    Send links to interesting articles or useful tools that were not in the PHP Digests , and your name will be next to the link in the release.

    Send link
    Quick search for all digests
    Previous release: PHP Digest No. 81

    Read Next