PHP Annotated – March 2020

栏目: IT技术 · 发布时间: 6年前

内容简介:Greetings everyone,We’re pleased to present the March edition of PHP Annotated. It includes 4 new RFCs from PHP Internals, including Attributes v2 and a PHP language evolution proposal. It also covers Laravel 7, CodeIgniter 4, and other releases, as well a

PHP Annotated – March 2020

Greetings everyone,

We’re pleased to present the March edition of PHP Annotated. It includes 4 new RFCs from PHP Internals, including Attributes v2 and a PHP language evolution proposal. It also covers Laravel 7, CodeIgniter 4, and other releases, as well as articles on Laravel and Symfony, useful tools, videos, podcasts, and plenty of other exciting posts!

:zap:️ News & Releases

  • CodeIgniter 4.0 – After 5 years of development, a new version of the framework has been released. It’s been rewritten from scratch, and it works on PHP 7.2+ and implements PSR-1,3, and 4.
  • PHP 7.4.3 – This release has a long-awaited fix for the opcache.preload_user bug, and preloading can now be used in production

 PHP Internals

  • Accepted proposals: [RFC] Variable Syntax Tweaks , [RFC] Static return type , [RFC] Allow ::class on objects
  • [RFC] Stringable – This proposal from Nicolas Grekas has also been accepted. In PHP 8, it will be possible to use the string|Stringable union type in places where a string is expected, and it will be possible to pass a class in them with the __toString() method.

    Interestingly, there’s no need to add implements Stringable explicitly, as this will be implemented automatically behind the scenes for all classes with __toString() .

  • Language evolution – Nikita has started a discussion about how to keep PHP moving forward without breaking legacy code. One option is to introduce “editions,” similar to what Rust has , and declare them using per-file declares (for example, declare(edition=2020) ).
  • [RFC] Write-Once Properties – This is a proposal to add a new property modifier that will allow you to initialize specific properties but disable their modification. There are several options for the name of the modifier: final , immutable , readonly , writeonce , locked , sealed .
     
        class Foo
        {
            <keyword> public int $a = 1;
            <keyword> public string $b;
            <keyword> public array $c = ["foo"];
            <keyword> public object $d;
     
            public function __construct()
            {
                $this->b = "foo";
            }
        }
     
        $foo = new Foo();
     
        $foo->a = 42;		// EXCEPTION: property a has already been initialized
        $foo->b = "bar";	// EXCEPTION: property b has already been initialized
        $foo->a++;		    // EXCEPTION: incrementing/decrementing is forbidden
        unset($foo->c);		// EXCEPTION: unsetting is forbidden
        $foo->c[] = "bar";	// EXCEPTION: arrays can't be modified
        $var= &$this->c;	// EXCEPTION: reference isn't allowed
     
        $foo->d = new Foo();	// SUCCESS: property d hasn't been initialized before
        $foo->d->foo = "foo";	// SUCCESS: objects are still mutable internally
     
    
  • [RFC] Allow explicit call-site pass-by-reference annotation – This updated RFC suggests making it possible to explicitly indicate the passing of arguments by reference. This will warn a developer that the passed variable is going to change. It is also proposes adding a directive to make the mode optional.
     
        declare(require_explicit_send_by_ref=1);
     
        function byRef(&$ref) {...}
        byRef(&$var);
     
    
  • [RFC] Increment/Decrement Fixes – In some cases, incremental and decremental operators do not behave in the same way that the explicit addition and subtraction of 1 with an assignment do. For example:
     
        <?php
     
        $a = [];
        $a = ++$a; // [] and no errors
        $a = $a + 1; // Fatal error
     
    

    It is proposed to fix inconsistencies in PHP 8 and throw an Error where appropriate.

  • [RFC] Attributes v2 – This is a second attempt to add full annotations in PHP with double bracket syntax <<...>> . There have been previous proposals for simple annotations and attributes , though the latter did not pass the voting.
     
        use Doctrine\ORM\Mapping as ORM;
     
        <<ORM\Entity(["repositoryClass" => UserRepository::class])>>
        <<ORM\Table("users")>>
        class User
        {
            <<ORM\Id, ORM\Column, ORM\GeneratedValue>>
            public int $id;
     
            <<ORM\Column(["unique" => true])>>
            public string $email;
     
            <<ORM\ManyToOne()>>
            public ?Address $address;
        }
     
    
  • [PR] Make sorting stable – The standard sorting functions in PHP are not stable. This means that the preservation of the original order of elements with the same values is not guaranteed. Here’s an example . There’s been a suggestion to fix this and make the sorting stable. However, with a large number of identical elements, such a fix would affect performance.

 Tools

Symfony

Laravel

Yii

Zend/Laminas

 Async PHP

 Misc

 Videos

 Podcasts

Thanks for reading!

If you have any interesting or useful links to share via PHP Annotated, please leave a comment on this post, or send me a tweet .

Subscribe to PHP Annotated

Your JetBrains PhpStorm team

The Drive to Develop


以上所述就是小编给大家介绍的《PHP Annotated – March 2020》,希望对大家有所帮助,如果大家有任何疑问请给我留言,小编会及时回复大家的。在此也非常感谢大家对 码农网 的支持!

查看所有标签

猜你喜欢:

本站部分资源来源于网络,本站转载出于传递更多信息之目的,版权归原作者或者来源机构所有,如转载稿涉及版权问题,请联系我们

高性能MySQL

高性能MySQL

施瓦茨 (Baron Schwartz)、扎伊采夫 (Peter Zaitsev)、特卡琴科 (Vadim Tkachenko) / 宁海元、周振兴、彭立勋、翟卫祥,刘辉 / 电子工业出版社 / 2013-5-1 / 128.00元

《高性能mysql(第3版)》是mysql 领域的经典之作,拥有广泛的影响力。第3 版更新了大量的内容,不但涵盖了最新mysql 5.5版本的新特性,也讲述了关于固态盘、高可扩展性设计和云计算环境下的数据库相关的新内容,原有的基准测试和性能优化部分也做了大量的扩展和补充。全书共分为16 章和6 个附录,内容涵盖mysql 架构和历史,基准测试和性能剖析,数据库软硬件性能优化,复制、备份和恢复,高可......一起来看看 《高性能MySQL》 这本书的介绍吧!

JSON 在线解析
JSON 在线解析

在线 JSON 格式化工具

Base64 编码/解码
Base64 编码/解码

Base64 编码/解码

RGB HSV 转换
RGB HSV 转换

RGB HSV 互转工具