建立變數陣列
$username = 'Hadibut';
$email = 'hadibut@example.org';
$variables = compact('username', 'email');
// $variables is now ['username' => 'Hadibut', 'email' => 'hadibut@example.org']
此方法通常在框架中用於在兩個元件之間傳遞變數陣列。
$username = 'Hadibut';
$email = 'hadibut@example.org';
$variables = compact('username', 'email');
// $variables is now ['username' => 'Hadibut', 'email' => 'hadibut@example.org']
此方法通常在框架中用於在兩個元件之間傳遞變數陣列。