LoginSignup
9
9

More than 5 years have passed since last update.

PHPのcompact記法が便利

Last updated at Posted at 2015-03-28

LaravelやCakePHPでは多用されているようなのですが、知らなかったのでメモ。

$array = ["apple" => "apple", "orange" => "orange", "lemon" => "lemon" ];

という配列を作りたいときは、

$apple = "apple";
$orange = "orange";
$lemon = "lemon";

$array = compact("apple", "orange", "lemon");

でいけるみたいです。便利!

9
9
1

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
9
9