3 lines
95 B
PHP
3 lines
95 B
PHP
$keys = array('a', 'b', 'c');
|
|
$values = array(1, 2, 3);
|
|
$hash = array_combine($keys, $values);
|