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

前端 未结 5 466
伪装坚强ぢ
伪装坚强ぢ 2021-02-03 17:13

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:38

    I prefer to use the list function for this task. This is not really a function but a language construct, used to assign a list of variables in one operation.

    list( $var1, $var2, $var3 ) = array('coffee', 'brown', 'caffeine');

    For more information see the documentation.

提交回复
热议问题