Table of Contents
Unicode 代码点转义语法
Null 合并操作符
调用之上绑定闭包
组使用声明
生成器改进
内部异常
即将到来!
测试你的代码
帮助 GOPHP7-EXT
书写文档
总结
Home Backend Development PHP Tutorial PHP 7 值得期待的新特性(下)

PHP 7 值得期待的新特性(下)

Jun 23, 2016 pm 01:22 PM

这是我们期待已久的 PHP 7 系列文章的第二篇。点此阅读 第一篇本文系 OneAPM 工程师编译整理。

也许你已经知道,重头戏 PHP 7 的发布将在今年到来!现在,让我们来了解一下,新版本有哪些新功能与改进。

在本系列的 第一篇 ,我们介绍了 PHP 7 中最重要的一些不兼容性修复以及两大新特性。在本文中,我们将了解 PHP 7 的另外六大功能。

Unicode 代码点转义语法

新增加的转义字符?? \u,允许我们在 PHP 字符串内明确指定 Unicode 字符代码点(以十六进制):

此处使用的语法为 \u{CODEPOINT} 。例如这个绿色的心形,?, 可以表示为 PHP 字符串 __"\u{1F49A}"__。

Null 合并操作符

另一个新的操作符?? Null 合并操作符 ?? ,其实是传说中的三目运算符 。如果它不是 Null ,将返回左操作数,否则返回右操作数。

重点在于,如果左操作数是一个不存在的变量,也不会引起注意。这就像 isset() ,而不像 ?: 短三目运算符。

你还可以链接该操作符,从而返回给定集合的第一个非 null 值。

$config = $config ?? $this->config ?? static::$defaultConfig;
Copy after login

调用之上绑定闭包

之前,在 PHP 5.4 添加的 Closure->bindTo() 与 Closure::bind() 允许你改变 $this 和调用范围的绑定,同时或单独地,创建一个重复闭包。

现在,PHP 7 增加了在调用时达到上述功能的简便方法,通过 Closure->call() 将 $this 和调用范围绑定至同一对象 。该方法将对象作为首个参数,然后是传到闭包中的其他参数,如下:

class HelloWorld {     private $greeting = "Hello";}$closure = function($whom) { echo $this->greeting . ' ' . $whom; }$obj = new HelloWorld();$closure->call($obj, 'World'); // Hello World
Copy after login

组使用声明

如果你曾经从同一命名空间导入多个类,而你的 IDE 能自动完成,你肯定会很高兴。对于其他人,为了简便起见,PHP 7 现在有了 组使用声明。这让你快速清楚地指定多次相似的 导入:

// Originaluse Framework\Component\SubComponent\ClassA;use Framework\Component\SubComponent\ClassB as ClassC;use Framework\Component\OtherComponent\ClassD;// With Group Useuse Framework\Component\{     SubComponent\ClassA,     SubComponent\ClassB as ClassC,     OtherComponent\ClassD};
Copy after login

你也可以在常量导入与函数导入时与 use function、use const 一起使用它。同时也支持混合导入。

use Framework\Component\{     SubComponent\ClassA,     function OtherComponent\someFunction,     const OtherComponent\SOME_CONSTANT};
Copy after login

生成器改进

生成器返回表达式

生成器有两大新功能。首先是 生成器返回表达式,它允许你在生成器(成功)完成时返回一个值。

PHP 7 之前,如果你尝试返回任何值将导致错误。然而,现在你可以调用 $generator->getReturn() 来获取返回值。

如果生成器尚未返回,或抛出未捕获的异常,调用 $generator->getReturn() 将抛出一个异常。

如果生成器已完成,但没有返回,则返回空。

举例如下:

function gen() {    yield "Hello";    yield " ";    yield "World!";    return "Goodbye Moon!";}$gen = gen();foreach ($gen as $value) {    echo $value; }// Outputs "Hello" on iteration 1, " " on iterator 2, and "World!" on iteration 3echo $gen->getReturn(); // Goodbye Moon!
Copy after login
生成器委托

第二个功能则更令人兴奋:生成器委托。这允许你返回另一个可迭代结构,它可以迭代自身??不论是数组,迭代器,还是另一个生成器。

重要的是,子结构的迭代是由最外层的原始循环完成的,如同单一的平面结构,而非递归结构。

当向生成器发送数据或异常时也同理。这些数据或异常会直接传到子结构中,就像被调用直接控制。

这是使用了 语法的 yield ,像这样:

function hello() {     yield "Hello";     yield " ";     yield "World!";     yield from goodbye();}function goodbye() {     yield "Goodbye";     yield " ";     yield "Moon!";}$gen = hello();foreach ($gen as $value) {     echo $value;}
Copy after login

在每次迭代中,将输出:

  • "Hello"

  • " "

  • "World!"

  • "Goodbye"

  • " "

  • "Moon!"

  • 值得一提的一点警告是,由于子结构可以产生自己的键,多次迭代完全可能返回相同的键??如果这对你很重要,你需要自己想办法避免。

    内部异常

    在 PHP 中,致命和可捕获的致命错误一直无法处理,或者很难处理 。但有了内部异常 以后,许多这类错误现在都可以抛出异常了。

    现在,当一个致命或可捕获的致命错误发生时,会抛出一个异常,允许你从容地处理它。如果你不进行处理,它将成为未捕获的异常这类传统的致命错误。

    这些异常是 \EngineException 对象。它们不像所有的用户异常,并不继承自 \Exception 类。这是为了确保现在捕获 \Exception 类的代码今后不会开始捕获致命错误。从而保持向后兼容性。

    在将来,如果你想同时捕获传统异常和内部异常,你需要捕获他们新的共享父类,\BaseException。

    此外, eval()’ed 代码中的解析错误会抛出 \ParseException,而类型不匹配将抛出一个 \TypeException。

    如下例:

    try {    nonExistentFunction();} catch (\EngineException $e) {     var_dump($e);}object(EngineException)#1 (7) {  ["message":protected]=>  string(32) "Call to undefined function nonExistantFunction()"  ["string":"BaseException":private]=>  string(0) ""  ["code":protected]=>  int(1)  ["file":protected]=>  string(17) "engine-exceptions.php"  ["line":protected]=>  int(1)  ["trace":"BaseException":private]=>  array(0) {  }  ["previous":"BaseException":private]=>  NULL}
    Copy after login

    OneAPM for PHP 能够深入到所有 PHP 应用内部完成应用性能管理 能够深入到所有 PHP 应用内部完成应用性能管理和监控,包括代码级别性能问题的可见性、性能瓶颈的快速识别与追溯、真实用户体验监控、服务器监控和端到端的应用性能管理。

    即将到来!

    距离 PHP 7.0.0 发布只有八个月了(译者翻译时所剩时日不多),该版本很可能是 PHP 历史上性能最快的一版。虽然现在它只具备内部测试品质(目前 RC5 已可以下载) ,但 PHP 7 的确让人期待。

    并且,你能帮助它变得更好。

    测试你的代码

    使用 Rasmus’s 的 PHP 7 vagrant 沙盒,开始运行你的测试套件,或执行常规的质量检验。向项目报告错误,并定期重试。

    帮助 GOPHP7-EXT

    使用 PHP 7 的一大障碍是确保更新所有扩展使之与新的 Zend Engine 3 兼容。

    如果你使用的扩展较为小众,没有得到其维护者足够的关注??或者你使用自己的扩展??请查看 GoPHP7-ext 项目从而确保 PHP 7 发布后一切都准备妥当。

    书写文档

    PHP 7 中的每个新功能都有一个 RFC 。你可以在 PHP.net 维基 找到他们,并在此基础上写新文档。你可以在 在线GUI 环境下 写,包括提交(如果你有 karma)或提交补丁以供审核。

    总结

    PHP 7 将是伟大的!

    PHP是全世界最好的语言,没有之一 :)

    抓紧测试你的应用程序。帮助迁移扩展。

    P.S. 你已经在使用 PHP 7 了么?你对新功能有何感受?是否有你不满意,或者不喜欢的地方?你认为你会何时升级?让我们知道你的想法!

    分享你的想法,尽在 APM俱乐部!

    OneAPM for PHP 能够深入到所有 PHP 应用内部完成应用性能管理 能够深入到所有 PHP 应用内部完成应用性能管理和监控,包括代码级别性能问题的可见性、性能瓶颈的快速识别与追溯、真实用户体验监控、服务器监控和端到端的应用性能管理。

    Statement of this Website
    The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn

    Hot AI Tools

    Undresser.AI Undress

    Undresser.AI Undress

    AI-powered app for creating realistic nude photos

    AI Clothes Remover

    AI Clothes Remover

    Online AI tool for removing clothes from photos.

    Undress AI Tool

    Undress AI Tool

    Undress images for free

    Clothoff.io

    Clothoff.io

    AI clothes remover

    AI Hentai Generator

    AI Hentai Generator

    Generate AI Hentai for free.

    Hot Article

    R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
    2 weeks ago By 尊渡假赌尊渡假赌尊渡假赌
    Hello Kitty Island Adventure: How To Get Giant Seeds
    1 months ago By 尊渡假赌尊渡假赌尊渡假赌
    Two Point Museum: All Exhibits And Where To Find Them
    1 months ago By 尊渡假赌尊渡假赌尊渡假赌

    Hot Tools

    Notepad++7.3.1

    Notepad++7.3.1

    Easy-to-use and free code editor

    SublimeText3 Chinese version

    SublimeText3 Chinese version

    Chinese version, very easy to use

    Zend Studio 13.0.1

    Zend Studio 13.0.1

    Powerful PHP integrated development environment

    Dreamweaver CS6

    Dreamweaver CS6

    Visual web development tools

    SublimeText3 Mac version

    SublimeText3 Mac version

    God-level code editing software (SublimeText3)

    Working with Flash Session Data in Laravel Working with Flash Session Data in Laravel Mar 12, 2025 pm 05:08 PM

    Laravel simplifies handling temporary session data using its intuitive flash methods. This is perfect for displaying brief messages, alerts, or notifications within your application. Data persists only for the subsequent request by default: $request-

    cURL in PHP: How to Use the PHP cURL Extension in REST APIs cURL in PHP: How to Use the PHP cURL Extension in REST APIs Mar 14, 2025 am 11:42 AM

    The PHP Client URL (cURL) extension is a powerful tool for developers, enabling seamless interaction with remote servers and REST APIs. By leveraging libcurl, a well-respected multi-protocol file transfer library, PHP cURL facilitates efficient execution of various network protocols, including HTTP, HTTPS, and FTP. This extension offers granular control over HTTP requests, supports multiple concurrent operations, and provides built-in security features.

    Simplified HTTP Response Mocking in Laravel Tests Simplified HTTP Response Mocking in Laravel Tests Mar 12, 2025 pm 05:09 PM

    Laravel provides concise HTTP response simulation syntax, simplifying HTTP interaction testing. This approach significantly reduces code redundancy while making your test simulation more intuitive. The basic implementation provides a variety of response type shortcuts: use Illuminate\Support\Facades\Http; Http::fake([ 'google.com' => 'Hello World', 'github.com' => ['foo' => 'bar'], 'forge.laravel.com' =>

    12 Best PHP Chat Scripts on CodeCanyon 12 Best PHP Chat Scripts on CodeCanyon Mar 13, 2025 pm 12:08 PM

    Do you want to provide real-time, instant solutions to your customers' most pressing problems? Live chat lets you have real-time conversations with customers and resolve their problems instantly. It allows you to provide faster service to your custom

    PHP Logging: Best Practices for PHP Log Analysis PHP Logging: Best Practices for PHP Log Analysis Mar 10, 2025 pm 02:32 PM

    PHP logging is essential for monitoring and debugging web applications, as well as capturing critical events, errors, and runtime behavior. It provides valuable insights into system performance, helps identify issues, and supports faster troubleshoot

    Explain the concept of late static binding in PHP. Explain the concept of late static binding in PHP. Mar 21, 2025 pm 01:33 PM

    Article discusses late static binding (LSB) in PHP, introduced in PHP 5.3, allowing runtime resolution of static method calls for more flexible inheritance.Main issue: LSB vs. traditional polymorphism; LSB's practical applications and potential perfo

    HTTP Method Verification in Laravel HTTP Method Verification in Laravel Mar 05, 2025 pm 04:14 PM

    Laravel simplifies HTTP verb handling in incoming requests, streamlining diverse operation management within your applications. The method() and isMethod() methods efficiently identify and validate request types. This feature is crucial for building

    Discover File Downloads in Laravel with Storage::download Discover File Downloads in Laravel with Storage::download Mar 06, 2025 am 02:22 AM

    The Storage::download method of the Laravel framework provides a concise API for safely handling file downloads while managing abstractions of file storage. Here is an example of using Storage::download() in the example controller:

    See all articles