Can you assign multiple variables at once in PHP like you can with Java?

前端 未结 5 1807
抹茶落季
抹茶落季 2021-02-03 17:09

I want to create 5 variables of type array all at once. Is this possible? In Java I know you can, but can\'t find anything about PHP. I\'d like to do something like this:

<
5条回答
  •  夕颜
    夕颜 (楼主)
    2021-02-03 17:26

    Since PHP 7.1 you can use square bracket syntax:

    [$var1, $var2, $var3, $var4, $var5] = array(1, 2, 3, 4, 5);
    

    [1] https://wiki.php.net/rfc/short_list_syntax
    [2] https://secure.php.net/manual/de/migration71.new-features.php#migration71.new-features.symmetric-array-destructuring

提交回复
热议问题