2012-08-17 50 views

回答

9

您可以使用compact創建一個數組了你的變量,然後簡單地add the two arrays在一起:

$countries += compact('as', 'ad'); 

See it in action

+0

太棒了!我知道緊湊但從未想過以這種方式使用它。謝謝! – 2012-08-17 10:27:08

+0

我不知道這很簡單。學習新東西總是很棒的。 – 2012-08-17 10:34:49

0
foreach(array('as','ad') as $name){ 
    $countries[$name] = $$name; 
} 
相關問題