Blogger Information
Blog 3
fans 2
comment 1
visits 9683
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
PHP 8.3 已经正式发布,全新功能一览
PHP技术社区
Original
137 people have browsed it

IT之家 11 月 23 日消息,PHP 8.3 版本目前已经正式推出,对于不少程序员朋友来说,PHP 是“最好的语言”,而近日发布的 8.3 版本可谓是 2023 年的年度主要版本更新
图片

类型化类常量

  1. interface I {
  2. const string PHP = 'PHP 8.3';
  3. }
  4. class Foo implements I {
  5. const string PHP = [];
  6. }
  7. // Fatal error: Cannot use array as value for class constant
  8. // Foo::PHP of type string

动态获取类常量

  1. class Foo {
  2. const PHP = 'PHP 8.3';
  3. }
  4. $searchableConstant = 'PHP';
  5. var_dump(Foo::{$searchableConstant});

新增 #[\Override] 属性

  1. use PHPUnit\Framework\TestCase;
  2. final class MyTest extends TestCase {
  3. protected $logFile;
  4. protected function setUp(): void {
  5. $this->logFile = fopen('/tmp/logfile', 'w');
  6. }
  7. #[\Override]
  8. protected function taerDown(): void {
  9. fclose($this->logFile);
  10. unlink('/tmp/logfile');
  11. }
  12. }
  13. // Fatal error: MyTest::taerDown() has #[\Override] attribute,
  14. // but no matching parent method exists

通过给方法添加 #[\Override] 属性,PHP 将确保在父类或实现的接口中存在同名的方法。添加该属性表示明确说明覆盖父方法是有意为之,并且简化了重构过程,因为删除被覆盖的父方法将被检测出来。

只读属性深拷贝

  1. class PHP {
  2. public string $version = '8.2';
  3. }
  4. readonly class Foo {
  5. public function __construct(
  6. public PHP $php
  7. ) {}
  8. public function __clone(): void {
  9. $this->php = clone $this->php;
  10. }
  11. }
  12. $instance = new Foo(new PHP());
  13. $cloned = clone $instance;
  14. $cloned->php->version = '8.3';
  15. readonly 属性现在可以在魔术方法 __clone中被修改一次,以此实现只读属性的深拷贝

新增 json_validate() 函数

  1. var_dump(json_validate('{ "test": { "foo": "bar" } }')); // true

json_validate() 可以检查一个字符串是否为语法正确的 JSON,比 json_decode() 更有效。

新增 Randomizer::getBytesFromString() 方法

  1. // A \Random\Engine may be passed for seeding,
  2. // the default is the secure engine.
  3. $randomizer = new \Random\Randomizer();
  4. $randomDomain = sprintf(
  5. "%s.example.com",
  6. $randomizer->getBytesFromString(
  7. 'abcdefghijklmnopqrstuvwxyz0123456789',
  8. 16,
  9. ),
  10. );
  11. echo $randomDomain;

在 PHP 8.2 中新增的 Random 扩展 通过一个新方法生成由特定字节组成的随机字符串。这种方法可以使开发者更轻松的生成随机的标识符(如域名),以及任意长度的数字字符串。

新增 Randomizer::getFloat() 和 Randomizer::nextFloat() 方法

  1. $randomizer = new \Random\Randomizer();
  2. $temperature = $randomizer->getFloat(
  3. -89.2,
  4. 56.7,
  5. \Random\IntervalBoundary::ClosedClosed,
  6. );
  7. $chanceForTrue = 0.1;
  8. // Randomizer::nextFloat() is equivalent to
  9. // Randomizer::getFloat(0, 1, \Random\IntervalBoundary::ClosedOpen).
  10. // The upper bound, i.e. 1, will not be returned.
  11. $myBoolean = $randomizer->nextFloat() < $chanceForTrue;

由于浮点数的精度和隐式四舍五入的限制,在特定区间内生成无偏差的浮点数并非易事,常建的用户解决方案可能会生成有偏差的结果或超出要求范围的数字。

Randomizer 扩展了两种方法,用于随机生成无偏差的浮点数。Randomizer::getFloat() 方法使用的是 γ-section 算法

新的类、接口和函数

  1. 1 新增 DOMElement::getAttributeNames()、DOMElement::insertAdjacentElement()、DOMElement::insertAdjacentText()、DOMElement::toggleAttribute()、DOMNode::contains()、DOMNode::getRootNode()、DOMNode::isEqualNode()、DOMNameSpaceNode::contains() DOMParentNode::replaceChildren() 方法。
  2. 2 新增 IntlCalendar::setDate()、IntlCalendar::setDateTime()、IntlGregorianCalendar::createFromDate() IntlGregorianCalendar::createFromDateTime() 方法。
  3. 3 新增 ldap_connect_wallet() ldap_exop_sync() 函数。
  4. 4 新增 mb_str_pad() 函数。
  5. 5 新增 posix_sysconf()、posix_pathconf()、posix_fpathconf() posix_eaccess() 函数。
  6. 6 新增 ReflectionMethod::createFromMethodName() 方法
  7. 7 新增 socket_atmark() 函数。
  8. 8 新增 str_increment()、str_decrement() stream_context_set_options() 函数。
  9. 9 新增 ZipArchive::getArchiveFlag() 方法。
  10. 10 支持在 OpenSSL 扩展中使用自定义 EC 参数生成 EC 密钥。
  11. 11 新增 INI 设置 zend.max_allowed_stack_size 用于设置允许的最大堆栈大小。

用和向后不兼容

  1. 1 更合适的 Date/Time 异常。
  2. 2 现在在空数组中获取负索引 n 时,将确保下一个索引是 n + 1 而不是 0
  3. 3 range() 函数的更改。
  4. 4 traits 中重新声明静态属性的更改。
  5. 5 U_MULTIPLE_DECIMAL_SEPERATORS 常量已被废弃,改为 U_MULTIPLE_DECIMAL_SEPARATORS
  6. 5 MT_RAND_PHP Mt19937 变体已被废弃。
  7. 6 ReflectionClass::getStaticProperties() 不再为空。
  8. 7 INI 配置 assert.activeassert.bailassert.callbackassert.exception assert.warning 已被废弃。
  9. 8 调用 get_class() get_parent_class() 时未提供参数,已被废弃。
Statement of this Website
The copyright of this blog article belongs to the blogger. Please specify the address when reprinting! If there is any infringement or violation of the law, please contact admin@php.cn Report processing!
All comments Speak rationally on civilized internet, please comply with News Comment Service Agreement
0 comments
Author's latest blog post