PHP Digest # 183 (22 Juni - 5 Juli 2020)

Foto oleh James Titcumb



Seleksi segar dengan tautan ke berita dan bahan. Segala sesuatu tentang PHP 8 dalam rilis: alfa pertama, ekspresi baru match, bug sintaksis @@untuk atribut, tolok ukur JIT nyata, 4 proposal baru. Dan, seperti biasa, alat, artikel, video, dan podcast.



Selamat membaca!



Berita dan rilis



  • PHP 8.0 alpha 1 β€” - PHP! .

    :



    PHP 8 . 3v4l.org Docker-.

  • `CurlHandle` class objects replace curl handlers β€” , PHP resource /. PHP 8 curl_ \CurlHandle.
  • JIT PHP 8 β€” JIT .



    Derick Rethans , JIT , , C. Brent Roose - .



    Benjamin Eberlei , JIT .
  • β€” β€” . 8 .


PHP Internals



  • memeriksa [RFC] Shorter Attribute Syntax β€” @@.



    , , , .



    : function(@@X \ Y $z) function(@@X\Y $z) ( X\Y ) function(@@X \Y $z) ( X \Y ). PHP .



    @@, , [RFC] Treat namespaced names as single token.
  • memeriksa [RFC] Match expression v2 β€” PHP 8 match, switch, .



    //    switch:
    switch ('foo') {
        case 0:
          $result = "Oh no!\n";
          break;
        case 'foo':
          $result = "This is what I expected\n";
          break;
    }
    echo $result;
    //> Oh no!
    
    //     match:
    echo match ('foo') {
        0 => "Oh no!\n",
        'foo' => "This is what I expected\n",
    };
    //> This is what I expected
    
  • [RFC] Allow trailing comma in closure use lists β€” use , .



    $longArgs_longVars = function (
        $longArgument,
        $longerArgument,
        $muchLongerArgument,  //    PHP 8.0  
    ) use (
        $longVar1,
        $longerVar2,
        $muchLongerVar3  //     
    ) {
       // body
    };
    
  • [RFC] Property write/set visibility β€” : . :
    // Syntax Option A
    class User {
        public:private int $id;
        public:protected string $name;
    }
    
    // Syntax Option B
    class User {
        public private(set) int $id;
        public protected(set) string $name;
    }
    


    , - , PHP 8.1, RFC, , , , .
  • [RFC] Language Constructs Syntax Changes β€” declare __halt_compiler β€” , , echo, .



    declare(strict_types=1);
    // =>
    declare strict_types = 1;
    
  • [RFC] Saner numeric strings β€” RFC .



    -, Β«, Β». echo '2str' + 2; 4, 2 E_NOTICE β€œA non well formed numeric value encountered” E_WARNING β€œA non-numeric value encountered”.



    -, , "123 " == " 123" true , .






Symfony





Laravel





Async PHP









/





Terima kasih atas perhatian anda!



Jika Anda melihat kesalahan atau ketidaktepatan, beri tahu kami dalam pesan pribadi .

Pertanyaan dan saran tulis ke email atau twitter .



Lebih banyak berita dan komentar di saluran PHP Digest Telegram .



Kirim tautan

Cari tautan di semua intisari

← Edisi sebelumnya: PHP-Intisari β„– 182




All Articles