4
Q
創建在PHP
A
回答
8
使用array_combine()
功能:
http://php.net/manual/en/function.array-combine.php
段:
$keys = array('a', 'b', 'c', 'd');
$values = array(1, 2, 3, 4);
$result = array_combine($keys, $values);
var_dump($result);
結果:
array(4) {
["a"]=>
int(1)
["b"]=>
int(2)
["c"]=>
int(3)
["d"]=>
int(4)
}
2
使用array_combine
舉例文檔:
$a = array('green', 'red', 'yellow');
$b = array('avocado', 'apple', 'banana');
$c = array_combine($a, $b);
print_r($c);
應該輸出:
Array
(
[green] => avocado
[red] => apple
[yellow] => banana
)
相關問題
- 1. 在PHP中創建
- 2. 創建RSS在PHP
- 3. 在PHP中創建
- 4. 創建PHP創建圖像
- 5. 在PHP中創建json_encode Mysql
- 6. 在PHP上創建查詢
- 7. 在php中創建JSON
- 8. 在php中創建圖像
- 9. 在PHP中創建datewise
- 10. 創建下拉樹在PHP
- 11. 創建沒有在PHP
- 12. 在PHP中創建JSON
- 13. 如何在PHP中創建
- 14. 在php中創建pdo類
- 15. 在PHP中創建affliate URL
- 16. 如何在PHP中創建
- 17. 在PHP中創建鏈接
- 18. 不能在PHP中創建
- 19. 不能在PHP創建表
- 20. 在PHP中創建日曆
- 21. 創建時間在PHP
- 22. 如何在PHP中創建
- 23. PHP創建
- 24. 用PHP創建
- 25. 創建PHP
- 26. PHP創建
- 27. 創建於PHP
- 28. 創建PHP的
- 29. 用PHP創建
- 30. 用PHP創建