次の6つの文字列を持つ配列があります。
user1 A
user2 B
user4 C
user2 D
user1 E
次のような辞書を作成する必要があります。
arr['user1'] => ['A', 'E']
arr['user2'] => ['B', 'D']
arr['user4'] => ['C']
PHPでこれを行う方法は?
これはうまくいくようです...
$arr = array();
foreach($lines as $line) {
list($user, $letter) = explode(" ", $line);
$arr[$user][] = $letter;
}
これはあなたができることです:
$strings = array(
'user1 A',
'user2 B',
'user4 C',
'user2 D',
'user1 E',
);
$arr = array();
foreach ($strings as $string) {
$values = explode(" ", $string);
$arr[$values[0]][] = $values[1];
}
$string が値の文字列であると仮定して、これを試してください。
$mainArr = array();
$lines = explode("\n", $string);
foreach ($lines as $line) {
$elements = explode(' ', $line);
$mainArr[$elements[0]][] = $elements[1];
}
print_r($mainArr);
$mainArr が値の配列であり、既に配列があると仮定します。
$newArr = array(); // Declaring an empty array for what you'll eventually return.
foreach ($mainArr as $key => $val) { // Iterate through each element of the associative array you already have.
$newArr[$key][] = $val; // Pop into the new array, retaining the key, but pushing the value into a second layer in the array.
}
print_r($newArr); // Print the whole array to check and see if this is what you want.
PHP で多次元配列を見たいと思うでしょう: http://php.net/manual/en/language.types.array.php