发布于2021-03-14 06:05 阅读(703) 评论(0) 点赞(8) 收藏(2)
可以声明变量可能的类型,语法糖 = 鸡肋,旧版本不声明就是。
1 2 3 4 5 6 7 8 9 10 11 | class Number { private int | float $number; public function setNumber( int | float $number): void { $ this ->number = $number; } public function getNumber(): int | float { return $ this ->number; } } |
允许数组中的 key 放入对象(鸡肋),$map[$obj] = 42;。
当函数或方法接收到具有正确类型的参数(错误类型应引发 TypeError 但值不合适时,将引发 ValueError 。
1、可变参数继承(鸡肋),允许
1 2 3 4 5 6 | class A { public function method( int $many, string $parameters, $here) {} } class B extends A { public function method(...$everything) {} } |
2、后期静态绑定(LSB)(有用),对框架级别的封装、一些工厂设计模式有用。RFC
1 2 3 4 5 | class Test { public function create(): static { return new static (); } } |
3、现在可以使用以下方法获取对象的类名称 RFC
$object::class. 等价 get_class($object).
4、现在,new 和 instanceof 可以与任意表达式一起使用,使用
new(expression)(... $args) 和 $obj instanceof(expression)。RFC
5、现在允许写。RFC
Foo::BAR::$baz
6、添加 Stringable 接口(作用一般,用在视图模板封装)。RFC
只要类实现了__toString,那么这类自动实现了 Stringable 接口。
1 2 3 4 5 6 7 8 9 10 | class Foo { public function __toString(): string { return 'foo' ; } } function bar(Stringable $stringable) { /* 虽然Foo没有实现Stringable,但是这里正常的。 */ } bar( new Foo()); bar( 'abc' ); |
7、trait 现在可以定义抽象的私有方法。
原来的 throw 是语句,必须用例如 if 判断后独立抛出。(用处多)
1 2 3 | // $value is non-nullable. $value = $nullableValue ?? throw new InvalidArgumentException(); 允许在参数列表中使用逗号结尾 |
鸡肋中的鸡肋,无用处
1 2 3 4 5 6 7 8 9 10 11 12 13 | class Uri { private function __construct( ? string $scheme, ? string $user, ? string $pass, ? string $host, ? int $port, string $path, ? string $query, ? string $fragment // <-- ARGH! ) { ... } |
}
如果用不到异常信息可以不设变变量,减少内存?
1 2 3 4 5 | try { changeImportantData(); } catch (PermissionException) { echo "You don't have permission to do this" ; } |
这个 RFC 内容挺多的,建议进去看示例。
1 2 3 4 5 6 7 8 9 10 | class A { public function foo( int $value) {} } class B extends A { // Parameter type was widened from int to mixed, this is allowed public function foo(mixed $value) {} } |
这个功能应该期待很久了,多数用在配置,路由、事件、ORM 映射定义等等;很有用。
1 2 3 4 5 6 7 8 | class Foo { <<ORM\Column(ORM\Column::T_INTEGER)>> protected $height; <<ExampleAttribute>> public function foo(<<ExampleAttribute>> $bar) { } } |
语法糖,减少 Getters and Setters 代码,说实话,这部分代码还不如和 ide 开发商交涉,支持和 java 一样快捷生成更好,还减少学习成本。有用处,但不重要,鸡肋到普通之间。
1 2 3 4 5 6 7 8 9 10 11 12 13 | // From: class Test { public function __construct( public Type $prop = DEFAULT) {} } // 等价于: class Test { public Type $prop; public function __construct(Type $prop = DEFAULT) { $ this ->prop = $prop; } } |
PHP7 就有了,但是没有正式启用和发布。PHP8 的 JIT 是一个比较重要的功能
大数据 & 密集计算,php 没有生态,而且因为 php 不支持线程,是多进程模型并发的(在利用多核 cpu 时,无法共享对象 + 语柄资源),本身就不适合密集计算。
更多PHP内容请访问:
腾讯T3-T4标准精品PHP架构师教程目录大全,只要你看完保证薪资上升一个台阶(持续更新)
原文链接:https://www.cnblogs.com/a609251438/p/13208591.html
作者:下班了快跑
链接:http://www.phpheidong.com/blog/article/3356/09ed14ac25b2430233c1/
来源:php黑洞网
任何形式的转载都请注明出处,如有侵权 一经发现 必将追究其法律责任
昵称:
评论内容:(最多支持255个字符)
---无人问津也好,技不如人也罢,你都要试着安静下来,去做自己该做的事,而不是让内心的烦躁、焦虑,坏掉你本来就不多的热情和定力
Copyright © 2018-2021 php黑洞网 All Rights Reserved 版权所有,并保留所有权利。 京ICP备18063182号-4
投诉与举报,广告合作请联系vgs_info@163.com或QQ3083709327
免责声明:网站文章均由用户上传,仅供读者学习交流使用,禁止用做商业用途。若文章涉及色情,反动,侵权等违法信息,请向我们举报,一经核实我们会立即删除!