开发者

Parallel array assignment in PHP

开发者 https://www.devze.com 2022-12-18 14:45 出处:网络
Most languages make it easy to take an array like [1, 2, 3] and assign those values 开发者_如何学Cto variables a, b, and c with a single command.

Most languages make it easy to take an array like [1, 2, 3] and assign those values 开发者_如何学Cto variables a, b, and c with a single command. For example, in Perl you can do

($a, $b, $c) = (1, 2, 3);

What's the corresponding trick in PHP?

[Thanks so much for the lightning fast answer! I know this is a trivial question but all the obvious google queries didn't turn up the answer so this is my attempt to fix that.]


Use list():

list($a, $b, $c) = $someArray;


Use list

$arr = array(1,2,3);
list($a, $b, $c) = $arr;


As of PHP 7.1 you can use the list shorthand [] for array destructuring.

[$a, $b, $c] = [1, 2, 3];

Also as of 7.1 you can destructure non-numerically keyed arrays similar to the way that object destructuring works in ES6. https://stitcher.io/blog/array-destructuring-with-list-in-php

0

精彩评论

暂无评论...
验证码 换一张
取 消