-4
我想基於值的數組使用組鍵。基於值數組的密鑰php
例如,我有這樣的數組:
array(17) {
["user-insert-resp.php"]=> string(3) "123"
["login.php"]=> string(3) "123"
["project-list.php"]=> string(3) "123"
["logout.php"]=> string(3) "123"
["index.php"]=> string(3) "123"
["project-view.php"]=> string(2) "13"
["download.php"]=> string(2) "13"
["sip-creator-resp.php"]=> string(2) "23"
["project-remove-resp.php"]=> string(1) "2"
["statistic.php"]=> string(2) "23"
["graficoUsers.php"]=> string(2) "23"
["statistic-topD.php"]=> string(2) "23"
["statistic-topV.php"]=> string(2) "23"
["user-edit-resp.php"]=> string(1) "3"
["statistic-proj.php"]=> string(1) "3"
["statistic-disc.php"]=> string(1) "3"
["graficodisc.php"]=> string(1) "3"
}
,我想再拍數組是這樣的:
123 => ["user-insert-resp.php","login.php","project-list.php","logout.php","sip-creator-resp.php"]
13 => ["project-view.php","download.php"]
23 => ["sip-creator-resp.php","statistic.php","statistic-topD.php","statistic-topV.php"]
2 => ["project-remove-resp.php"];
3 => ["statistic-proj.php","statistic-disc.php","graficodisc.php"]
...,什麼是你的代碼已經試過嗎? – hek2mgl