logo
  • 教程列表
  • SO官方文檔
  • 陣列
    • 初始化陣列
    • 檢查金鑰是否存在
    • 驗證陣列型別
    • 建立變數陣列
    • 檢查陣列中是否存在值
    • ArrayAccess 和 Iterator 介面
  1. StackOverflow 文件
  2. PHP 教程
  3. 陣列
  4. 建立變數陣列

建立變數陣列

Created: November-22, 2018

$username = 'Hadibut';
$email = 'hadibut@example.org';

$variables = compact('username', 'email');
// $variables is now ['username' => 'Hadibut', 'email' => 'hadibut@example.org']

此方法通常在框架中用於在兩個元件之間傳遞變數陣列。

  • 檢查陣列中是否存在值
  • 驗證陣列型別

Copyright © 2018. All right reserved

tastones.com 备案号:鲁ICP备18045372号-1

  • 關於本站
  • 免責聲明