PHP 8.4:新特性与改进,PHP界的又一次飞跃

打印 上一主题 下一主题

主题 984|帖子 984|积分 2952

PHP,这个全球最流行的服务器端脚本语言,刚刚迎来了它的最新版本——PHP 8.4。这个版本不光带来了一系列令人高兴的新特性,还对现有功能举行了改进和优化。在这篇文章中,我们将深入探讨PHP 8.4的新特性,以及它们如何影响开发者的工作和PHP的未来。


属性钩子(Property hooks)RFC文档

在PHP 8.4之前,开发者需要通过getter和setter方法来处置惩罚类的属性。这种方式虽然有效,但偶然显得冗余且难以维护。PHP 8.4引入了属性钩子,答应开发者直接在属性定义中指定getter和setter,从而简化了代码并提高了IDE和静态分析工具的兼容性。
PHP 8.4之前

  1. class Locale {    private string $languageCode;    private string $countryCode;        public function __construct(string $languageCode, string $countryCode) {        $this->setLanguageCode($languageCode);        $this->setCountryCode($countryCode);    }        public function setCountryCode(string $countryCode): void {        $this->countryCode = strtoupper($countryCode);    }        public function getCombinedCode(): string {        return sprintf("%s_%s", $this->languageCode, $this->countryCode);    }}
复制代码
PHP 8.4之后

  1. class Locale {    public string $languageCode;    public string $countryCode {        set (string $countryCode) {            $this->countryCode = strtoupper($countryCode);        }    }        public string $combinedCode {        get => sprintf("%s_%s", $this->languageCode, $this->countryCode);        set (string $value) {            list($this->countryCode, $this->languageCode) = explode('_', $value, 2);        }    }}
复制代码
不对称可见性(Asymmetric Visibility)RFC文档

PHP 8.4引入了不对称可见性属性,答应开发者独立控制属性的读写权限。这意味着你可以让一个属性只读或只写,而不需要额外的getter方法。
PHP 8.4之前

  1. class PhpVersion {    private string $version = '8.3';        public function getVersion(): string {        return $this->version;    }        public function increment(): void {        [$major, $minor] = explode('.', $this->version);        $minor++;        $this->version = "{$major}.{$minor}";    }}
复制代码
PHP 8.4之后

  1. class PhpVersion {    public private(set) string $version = '8.4';        public function increment(): void {        [$major, $minor] = explode('.', $this->version);        $minor++;        $this->version = "{$major}.{$minor}";    }}
复制代码
#[\Deprecated]属性

PHP 8.4引入了新的#[\Deprecated]属性,使得PHP的废弃机制可以应用于用户定义的函数、方法和类常量。
PHP 8.4之前

  1. class PhpVersion {    /**     * @deprecated 8.3 use PhpVersion::getVersion() instead     */    public function getPhpVersion(): string {        return $this->getVersion();    }        public function getVersion(): string {        return '8.3';    }}
复制代码
PHP 8.4之后

  1. class PhpVersion {    #[\Deprecated(        message: "use PhpVersion::getVersion() instead",        since: "8.4",    )]    public function getPhpVersion(): string {        return $this->getVersion();    }        public function getVersion(): string {        return '8.4';    }}
复制代码
新的ext-dom特性和HTML5支持
PHP 8.4引入了新的DOM API,包括对HTML5文档的标准兼容支持,修复了DOM功能的长期兼容性问题,并添加了多个函数以方便文档操作。
PHP 8.4之前

  1. $dom = new DOMDocument();$dom->loadHTML(    <<<HTML        <main>            <article>PHP 8.4 is a feature-rich release!</article>            <article class="featured">PHP 8.4 adds new DOM classes that are spec-compliant, keeping the old ones for compatibility.</article>        </main>        HTML,    LIBXML_NOERROR,);
复制代码
PHP 8.4之后

  1. $dom = Dom\HTMLDocument::createFromString(    <<<HTML        <main>            <article>PHP 8.4 is a feature-rich release!</article>            <article class="featured">PHP 8.4 adds new DOM classes that are spec-compliant, keeping the old ones for compatibility.</article>        </main>        HTML,    LIBXML_NOERROR,);
复制代码
对象API for BCMath

PHP 8.4引入了BcMath\Number对象,使得在处置惩罚任意精度数字时可以使用面向对象的方式和标准数学运算符。
PHP 8.4之前

  1. $num1 = '0.12345';$num2 = 2;$result = bcadd($num1, $num2, 5);echo $result; // '2.12345'
复制代码
PHP 8.4之后

  1. use BcMath\Number;$num1 = new Number('0.12345');$num2 = new Number('2');$result = $num1 + $num2;echo $result; // '2.12345'
复制代码
新的array_*()函数

PHP 8.4引入了新的array_*()函数,使得数组操作更加方便。
PHP 8.4之前

  1. $animal = null;foreach (['dog', 'cat', 'cow', 'duck', 'goose'] as $value) {    if (str_starts_with($value, 'c')) {        $animal = $value;        break;    }}var_dump($animal); // string(3) "cat"
复制代码
PHP 8.4之后

  1. $animal = array_find(    ['dog', 'cat', 'cow', 'duck', 'goose'],    static fn (string $value): bool => str_starts_with($value, 'c'),);var_dump($animal); // string(3) "cat"
复制代码
PDO驱动特定子类

PHP 8.4引入了PDO的特定驱动子类,使得数据库操作更加灵活和强盛。
PHP 8.4之前

  1. $connection = new PDO(    'sqlite:foo.db',    $username,    $password,);
复制代码
PHP 8.4之后

  1. $connection = PDO::connect(    'sqlite:foo.db',    $username,    $password,);
复制代码
无需括号的新实例化语法

PHP 8.4答应在实例化对象后直接访问属性和方法,无需将new表达式放在括号中。
PHP 8.4之前

  1. var_dump((new PhpVersion())->getVersion());
复制代码
PHP 8.4之后

  1. var_dump(new PhpVersion()->getVersion());
复制代码
新类、接口和函数

PHP 8.4还引入了许多新的类、接口和函数,包括懒加载对象、新的JIT实现、新的request_parse_body()函数等。
PHP 8.4也带来了一些废弃和向后兼容性中断的变更,包括IMAP、OCI8、PDO_OCI和pspell扩展被移动到PECL,隐式可空参数类型被废弃等。
PHP 8.4的发布,不光是PHP语言的一次庞大更新,也是对开发者工作流程的一次优化。新特性的加入,使得PHP在性能、安全性和开发服从上都有了显著提升。随着PHP 8.4的普及,我们有来由信赖,PHP将继续在服务器端脚本语言范畴保持其领先职位。
科技脉搏,逐日跳动。
——敖行客Allthinker与您共享未来之声


- 聪明链接 头脑协作 -


免责声明:如果侵犯了您的权益,请联系站长,我们会及时删除侵权内容,谢谢合作!更多信息从访问主页:qidao123.com:ToB企服之家,中国第一个企服评测及商务社交产业平台。
回复

使用道具 举报

0 个回复

倒序浏览

快速回复

您需要登录后才可以回帖 登录 or 立即注册

本版积分规则

立聪堂德州十三局店

金牌会员
这个人很懒什么都没写!
快速回复 返回顶部 返回列表