锟铰碉拷锟斤拷锟斤拷

锟斤拷锟斤拷 Generators

Support for generators has been added via the yield keyword. Generators provide an easy way to implement simple iterators without the overhead or complexity of implementing a class that implements the Iterator interface.

A simple example that reimplements the range() function as a generator (at least for positive step values):

<?php
function xrange($start$limit$step 1) {
    for (
$i $start$i <= $limit$i += $step) {
        yield 
$i;
    }
}

echo 
'Single digit odd numbers: ';

/* 注锟解保锟斤拷锟斤拷锟节达拷锟叫碉拷锟斤拷锟斤拷锟斤拷锟斤拷岜伙拷锟斤拷锟斤拷蚍祷锟� */ 
foreach (xrange(192) as $number) {
    echo 
"$number ";
}
?>

锟斤拷锟斤拷锟斤拷锟教伙拷锟斤拷锟斤拷锟�

Single digit odd numbers: 1 3 5 7 9 

锟斤拷锟斤拷 finally 锟截硷拷锟斤拷

try-catch blocks now support a finally block for code that should be run regardless of whether an exception has been thrown or not.

foreach 锟斤拷锟斤拷支锟斤拷 list()

foreach 锟斤拷锟狡结构锟斤拷锟斤拷支锟斤拷通锟斤拷 list() 锟斤拷锟届将嵌锟斤拷锟斤拷锟斤拷锟斤拷氲斤拷锟斤拷锟斤拷谋锟斤拷锟斤拷锟斤拷锟斤拷纾�

<?php
$array 
= [
    [
12],
    [
34],
];

foreach (
$array as list($a$b)) {
    echo 
"A: $a; B: $b\n";
}
?>

锟斤拷锟斤拷锟斤拷锟教伙拷锟斤拷锟斤拷锟�

A: 1; B: 2
A: 3; B: 4

锟斤拷锟斤拷 foreach 锟斤拷锟斤拷锟斤拷锟斤拷牡锟斤拷刹慰锟斤拷锟斤拷锟街诧拷页锟芥。

empty() 支锟斤拷锟斤拷锟斤拷锟斤拷式

empty() 锟斤拷锟斤拷支锟街达拷锟斤拷一锟斤拷锟斤拷锟斤拷锟斤拷式锟斤拷锟斤拷锟斤拷锟斤拷锟斤拷一锟斤拷锟斤拷锟斤拷锟斤拷锟斤拷锟界:

<?php
function always_false() {
    return 
false;
}

if (empty(
always_false())) {
    echo 
'This will be printed.';
}

if (empty(
true)) {
    echo 
'This will not be printed.';
}
?>

锟斤拷锟斤拷锟斤拷锟教伙拷锟斤拷锟斤拷锟�

This will be printed.

array and string literal dereferencing

Array and string literals can now be dereferenced directly to access individual elements and characters:

<?php
echo 'Array dereferencing: ';
echo [
123][0];
echo 
"\n";

echo 
'String dereferencing: ';
echo 
'PHP'[0];
echo 
"\n";
?>

锟斤拷锟斤拷锟斤拷锟教伙拷锟斤拷锟斤拷锟�

Array dereferencing: 1
String dereferencing: P

锟铰碉拷锟斤拷锟斤拷锟较� API

A 锟铰碉拷锟斤拷锟斤拷锟较� API that makes it easier to securely hash and manage passwords using the same underlying library as crypt() in PHP has been added. See the documentation for password_hash() for more detail.

Apache 2.4 handler supported on Windows

The Apache 2.4 handler SAPI is now supported on Windows.

锟侥斤拷 GD

锟斤拷 GD 锟斤拷展锟斤拷锟剿多方锟斤拷母慕锟斤拷锟斤拷锟斤拷锟斤拷锟�