是否有到PHP數組轉換從轉換陣列不同格式的PHP
$actions = Array ([visits-visit] => Array (
[0] => index
[1] => edit
[2] => add
[3] => delete
[4] => search
)
)
到
Array ([visits-visit] => Array (index ,edit ,add ,delete, search))
我在第一格式的數組,並需要增加它的簡單和快捷的方式因爲這
$this->allow($_userRole, 'module-contr', array(index ,edit ,add ,delete, search));
,當我作出這樣
$this->allow($_userRole, 'module-contr', array($actions));
它不被接受,因爲我想。
這兩個數組是相同的。唯一的區別在於第二個鍵由PHP自動分配。 – Jon
我沒有發現在這兩個陣列的任何區別... :) –
你想要什麼? – candyleung