【modernPHP專題(1)】php7經常使用特性整理

PHP7性能

7最大的亮點,應該就是性能提升了兩倍,某些測試環境下甚至提升到三到五倍,具體能夠了解如下連接:php

PHP7 VS HHVM (WordPress)html

HHVM vs PHP 7 – The Competition Gets Closer! 數組

PHP 7.0 Is Showing Very Promising Performance Over PHP 5, Closing Gap With HHVM安全

PHP7革新與性能優化性能優化

經常使用特性整理

標量類型聲明

PHP 7 中的函數的形參類型聲明能夠是標量了。在 PHP 5 中只能是類名、接口、array 或者 callable (PHP 5.4,便可以是函數,包括匿名函數),如今也可使用 string、int、float和 bool 了php7

<?php

// 強制模式,強制把參數int化
function sumOfInts(int ...$ints)
{
    return array_sum($ints);
}

var_dump(sumOfInts(2, '3', 4.1));
強制模式(默認,既強制類型轉換)下會對不符合預期的參數進行強制類型轉換,但嚴格模式下則觸發 TypeError 的致命錯誤。
嚴格模式:申明 declare(strict_types=1)便可;

返回值類型聲明

PHP 7 增長了對返回類型聲明的支持。 相似於參數類型聲明,返回類型聲明指明瞭函數返回值的類型。可用的類型與參數聲明中可用的類型相同。閉包

function arraysSum(array ...$arrays): array
{
   # 把返回值強制轉換爲string
    return array_map(function(array $array): string {
        return array_sum($array);
    }, $arrays);
}

var_dump(arraysSum([1,2,3], [4,5,6], [7,8,9]));

# output
array(3) {
  [0]=>
  string(1) "6"
  [1]=>
  string(2) "15"
  [2]=>
  string(2) "24"
}

// 7.1 要麼string,要麼是null
function testReturn(): ?string
{
    return null;
}

// 7.1 要麼沒有return,要麼使用空的return。
// 對於 void來講,NULL 不是一個合法的返回值。雖然它返回的也是個null
function swap(&$left, &$right) : void
{
    if ($left === $right) {
        return;
    }

    $tmp = $left;
    $left = $right;
    $right = $tmp;
}

$a = 1;
$b = 2;
var_dump(swap($a, $b), $a, $b);

// 7.1 返回對象類型
function test(object $obj) : object
{
    return new SplQueue();
}

// 7.1
// iterable: 數組或者實現Traversable接口的對象
// Traversable也就是 IteratorAggregate 或 Iterator 接口實現。
// 也就是函數必需要傳入一個可foreach遍歷的參數,以及返回一個可foreach遍歷的值
function iterator(iterable $iter) : iterable
{
    foreach ($iter as $val) {
        //
    }
}
一樣有嚴格模式和強制模式

容許重寫抽象方法(Abstract method)

abstract class A
{
    abstract function test(string $s);
}
abstract class B extends A
{
    // 當一個抽象類繼承於另一個抽象類的時候,繼承後的抽象類能夠重寫被繼承的抽象類的抽象方法。
    abstract function test($s) : int;
}

運算符...

5.6就有此特性了,但在PHP7的的程序代碼中才發現大量使用app

使用...運算符定義變長參數函數異步

function f($req, $opt = null, ...$params) {
    // $params 是一個包含了剩餘參數的數組
    printf('$req: %d; $opt: %d; number of params: %d'."\n",
           $req, $opt, count($params));
}

f(1);
f(1, 2);
f(1, 2, 3);
f(1, 2, 3, 4);

# output
$req: 1; $opt: 0; number of params: 0
$req: 1; $opt: 2; number of params: 0
$req: 1; $opt: 2; number of params: 1
$req: 1; $opt: 2; number of params: 2

使用...運算符進行參數展開async

function add($a, $b, $c) {
    return $a + $b + $c;
}

$operators = [2, 3];
echo add(1, ...$operators); // output: 6

NULL 合併運算符

// 若是 $_GET['user'] 不存在返回 'nobody',不然返回 $_GET['user'] 的值
$username = $_GET['user'] ?? 'nobody';

// 至關於
isset($_GET['user']) ?  $_GET['user'] : 'nobody';

// 相似於屏蔽notice錯誤後的:
$username = $_GET['user'] ?: 'nobody';

太空船操做符(組合比較符)

用於比較兩個表達式。當$a大於、等於或小於$b時它分別返回-一、0或1。

<?php
// $a 是否大於 $b , 大於就返回1
// 整型
echo 1 <=> 1; // 0
echo 1 <=> 2; // -1
echo 2 <=> 1; // 1

// 浮點型
echo 1.5 <=> 1.5; // 0
echo 1.5 <=> 2.5; // -1
echo 2.5 <=> 1.5; // 1

// 字符串
echo "a" <=> "a"; // 0
echo "a" <=> "b"; // -1
echo "b" <=> "a"; // 1

經過 define() 定義常量數組

<?php

define('ANIMALS', [
    'dog',
    'cat',
    'bird'
]);

// ANIMALS[1] = mouse; 常量數組裏面的值,是不能夠更改的

echo ANIMALS[1]; // 輸出 "cat"

匿名類

如今支持經過new class 來實例化一個匿名類

interface Logger {
    public function log(string $msg);
}

class Application {
    private $logger;

    public function getLogger(): Logger {
        return $this->logger;
    }

    public function setLogger(Logger $logger) {
        $this->logger = $logger;
    }
}

$app = new Application;
$app->setLogger(new class implements Logger {
    public function log(string $msg) {
        echo $msg;
    }
});

var_dump($app->getLogger());

# output:
object(class@anonymous)#2 (0) {
}

爲unserialize()提供過濾

這個特性旨在提供更安全的方式解包不可靠的數據。它經過白名單的方式來防止潛在的代碼注入。

// 轉換對象爲 __PHP_Incomplete_Class 對象
$data = unserialize($foo, ["allowed_classes" => false]);

// 轉換對象爲 __PHP_Incomplete_Class 對象,除了 MyClass 和 MyClass2
$data = unserialize($foo, ["allowed_classes" => ["MyClass", "MyClass2"]]);

// 默認接受全部類
$data = unserialize($foo, ["allowed_classes" => true]);

斷言assert

向後兼用並加強以前的 assert() 的方法。 它使得在生產環境中啓用斷言爲零成本,而且提供當斷言失敗時拋出特定異常的能力。

ini_set('assert.exception', 1);

class CustomError extends AssertionError {}
assert(2 == 1, new CustomError('Some error message'));

use 增強

從同一 namespace 導入的類、函數和常量如今能夠經過單個 use 語句 一次性導入了。

//  PHP 7 以前版本用法
use some\namespace\ClassA;
use some\namespace\ClassB;
use some\namespace\ClassC as C;

use function some\namespace\fn_a;
use function some\namespace\fn_b;
use function some\namespace\fn_c;

use const some\namespace\ConstA;
use const some\namespace\ConstB;
use const some\namespace\ConstC;

// PHP 7+ 用法
use some\namespace\{ClassA, ClassB, ClassC as C};
use function some\namespace\{fn_a, fn_b, fn_c};
use const some\namespace\{ConstA, ConstB, ConstC};

Generator 增強 : yield from

加強了Generator的功能,這個能夠實現不少先進的特性

function gen()
{
    yield 1;
    yield 2;

    yield from gen2();
}

function gen2()
{
    yield 3;
    yield 4;
}

foreach (gen() as $val)
{
    echo $val, PHP_EOL;
}

整除

新增了整除函數 intdiv()

var_dump(intdiv(10, 3)); # 3

array_column() 和 list()

新增支持對象數組

list($a, $b) = (object) new ArrayObject([0, 1]);
// PHP7結果:$a == 0 and $b == 1.
// PHP5結果:$a == null and $b == null.

// 短數組語法([])如今做爲list()語法的一個備選項
$data = [
    [1, 'Tom'],
    [2, 'Fred'],
];

// list() style
list($id1, $name1) = $data[0];

// [] style
[$id1, $name1] = $data[0]; # $id1 : 1

// 7.1還支持鍵名
["id" => $id1, "name" => $name1] = $data[0];

dirname()

增長了可選項$levels,能夠用來指定目錄的層級。dirname(dirname($foo)) => dirname($foo, 2);

Closure::call()

Closure::call() 如今有着更好的性能,簡短幹練的暫時綁定一個方法到對象上閉包並調用它。

class A {private $x = 1;}

// Pre PHP 7 代碼
$getXCB = function() {return $this->x;};
$getX = $getXCB->bindTo(new A, 'A'); 
echo $getX();

//// PHP 7+ 代碼
$getX = function() {return $this->x;};
echo $getX->call(new A);

類常量可見性

支持設置類常量的可見性。

<?php
class ConstDemo
{
    const PUBLIC_CONST_A = 1;
    public const PUBLIC_CONST_B = 2;
    protected const PROTECTED_CONST = 3;
    private const PRIVATE_CONST = 4;
}

錯誤和異常

PHP 7 改變了大多數錯誤的報告方式。不一樣於傳統(PHP 5)的錯誤報告機制,如今大多數錯誤被做爲Error異常拋出。

// 7.1 多異常捕獲
try {
    // some code
} catch (FirstException | SecondException $e) {
    // handle first and second exceptions
}

try
{
    throw new Error('message');
//    throw new Exception('message');
}
// 捕獲全部的異常和錯誤
catch (Throwable $t)
{
    echo 'Throwable: ' . $t->getMessage();
}
// 只捕獲錯誤
catch (Error $e)
{
    echo 'Error : ' . $e->getMessage();
}
// 只捕獲異常
catch (Exception $e)
{
    echo 'Exception : ' . $e->getMessage();
}

異步信號處理

//開啓異步信號處理
pcntl_async_signals(true);

// SIGINT信號也就是ctrl+c,當ctrl+c的時候觸發此回調
pcntl_signal(SIGINT, function(){
    echo '捕獲到SIGINT信號' . PHP_EOL;
});

$i = 0;
while(1)
{
    echo $i++ . PHP_EOL;
    sleep(1);
}

更多請參考:

關於PHP7新特性

相關文章
相關標籤/搜索