參數(shù)以及返回值的類型現(xiàn)在可以通過在類型前加上一個問號使之允許為空。 當(dāng)啟用這個特性時,傳入的參數(shù)或者函數(shù)返回的結(jié)果要么是給定的類型,要么是 null 。
<?php
function testReturn(): ?string
{
return 'elePHPant';
}
var_dump(testReturn());
function testReturn(): ?string
{
return null;
}
var_dump(testReturn());
function test(?string $name)
{
var_dump($name);
}
test('elePHPant');
test(null);
test();
以上例程會輸出:
string(10) "elePHPant" NULL string(10) "elePHPant" NULL Uncaught Error: Too few arguments to function test(), 0 passed in...
一個新的返回值類型void被引入。
返回值聲明為 void 類型的方法要么干脆省去 return 語句,要么使用一個空的 return 語句。
對于 void 函數(shù)來說,null
不是一個合法的返回值。
<?php
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);
以上例程會輸出:
null int(2) int(1)
試圖去獲取一個 void 方法的返回值會得到 null
,并且不會產(chǎn)生任何警告。這么做的原因是不想影響更高層次的方法。
短數(shù)組語法([]
)現(xiàn)在作為list()語法的一個備選項,可以用于將數(shù)組的值賦給一些變量(包括在foreach
中)。
<?php
$data = [
[1, 'Tom'],
[2, 'Fred'],
];
// list() style
list($id1, $name1) = $data[0];
// [] style
[$id1, $name1] = $data[0];
// list() style
foreach ($data as list($id, $name)) {
// logic here with $id and $name
}
// [] style
foreach ($data as [$id, $name]) {
// logic here with $id and $name
}
現(xiàn)在起支持設(shè)置類常量的可見性。
<?php
class ConstDemo
{
const PUBLIC_CONST_A = 1;
public const PUBLIC_CONST_B = 2;
protected const PROTECTED_CONST = 3;
private const PRIVATE_CONST = 4;
}
現(xiàn)在引入了一個新的被稱為iterable的偽類 (與callable類似)。 這可以被用在參數(shù)或者返回值類型中,它代表接受數(shù)組或者實現(xiàn)了Traversable接口的對象。 至于子類,當(dāng)用作參數(shù)時,子類可以收緊父類的iterable類型到array 或一個實現(xiàn)了Traversable的對象。對于返回值,子類可以拓寬父類的 array或?qū)ο蠓祷刂殿愋偷?span id="aizajhg" class="type">iterable。
<?php
function iterator(iterable $iter)
{
foreach ($iter as $val) {
//
}
}
一個catch語句塊現(xiàn)在可以通過管道字符(|
)來實現(xiàn)多個異常的捕獲。
這對于需要同時處理來自不同類的不同異常時很有用。
<?php
try {
// some code
} catch (FirstException | SecondException $e) {
// handle first and second exceptions
}
現(xiàn)在list()和它的新的[]
語法支持在它內(nèi)部去指定鍵名。這意味著它可以將任意類型的數(shù)組
都賦值給一些變量(與短數(shù)組語法類似)
<?php
$data = [
["id" => 1, "name" => 'Tom'],
["id" => 2, "name" => 'Fred'],
];
// list() style
list("id" => $id1, "name" => $name1) = $data[0];
// [] style
["id" => $id1, "name" => $name1] = $data[0];
// list() style
foreach ($data as list("id" => $id, "name" => $name)) {
// logic here with $id and $name
}
// [] style
foreach ($data as ["id" => $id, "name" => $name]) {
// logic here with $id and $name
}
現(xiàn)在所有支持偏移量的字符串操作函數(shù)
都支持接受負數(shù)作為偏移量,包括通過[]
或{}
操作字符串下標(biāo)。在這種情況下,一個負數(shù)的偏移量會被理解為一個從字符串結(jié)尾開始的偏移量。
<?php
var_dump("abcdef"[-2]);
var_dump(strpos("aabbcc", "b", -3));
以上例程會輸出:
string (1) "e" int(3)
Negative string and array offsets are now also supported in the simple variable parsing syntax inside of strings.
<?php
$string = 'bar';
echo "The last character of '$string' is '$string[-1]'.\n";
?>
以上例程會輸出:
The last character of 'bar' is 'r'.
通過給openssl_encrypt()和openssl_decrypt() 添加額外參數(shù),現(xiàn)在支持了AEAD (模式 GCM and CCM)。
Closure新增了一個靜態(tài)方法,用于將callable快速地 轉(zhuǎn)為一個Closure 對象。
<?php
class Test
{
public function exposeFunction()
{
return Closure::fromCallable([$this, 'privateFunction']);
}
private function privateFunction($param)
{
var_dump($param);
}
}
$privFunc = (new Test)->exposeFunction();
$privFunc('some value');
以上例程會輸出:
string(10) "some value"
一個新的名為 pcntl_async_signals() 的方法現(xiàn)在被引入, 用于啟用無需 ticks (這會帶來很多額外的開銷)的異步信號處理。
<?php
pcntl_async_signals(true); // turn on async signals
pcntl_signal(SIGHUP, function($sig) {
echo "SIGHUP\n";
});
posix_kill(posix_getpid(), SIGHUP);
以上例程會輸出:
SIGHUP
對服務(wù)器推送的支持現(xiàn)在已經(jīng)被加入到 CURL 擴展中(
需要版本 7.46 或更高)。這個可以通過
curl_multi_setopt() 函數(shù)與新的常量
CURLMOPT_PUSHFUNCTION
來進行調(diào)節(jié)。常量
CURL_PUST_OK
和 CURL_PUSH_DENY
也已經(jīng)被添加進來,以便服務(wù)器推送的回調(diào)函數(shù)來表明自己會同意或拒絕處理。
新增 tcp_nodelay 選項。