これが配列です。
Array
(
[0] => Array
(
[position] => TMDL
[name] => Bills, Buffalo
[id] => 0251
[team] => BUF
)
[290] => Array
(
[position] => TMDL
[name] => Colts, Indianapolis
[id] => 0252
[team] => IND
)
[395] => Array
(
[position] => TMDL
[name] => Dolphins, Miami
[id] => 0253
[team] => MIA
)
[482] => Array
(
[position] => CB
[name] => Hall, Deangelo
[id] => 7398
[team] => WAS
[status] => Probable
[details] => Ankle
)
)
私がやろうとしているのは、[status] や [details] などの負傷項目を持つ 2 次元配列の内容のみを表示することです。それらの一部には [position] [name] [id] および [team] キーしかないためです。以下は、これまでに思いついたコードですが、配列内のすべてを出力します。配列ループで array_key_exists を試しましたが、何をしているのかわかりません。
$injuryData = file_get_contents('http://football.myfantasyleague.com/2013/export?TYPE=injuries&L=&W=&JSON=1&callback=');
$array1 = json_decode($injuryData, true);
$playerData = file_get_contents('http://football.myfantasyleague.com/2013/export?TYPE=players&L=&W=&JSON=1');
$array2 = json_decode($playerData, true);
function map($x) {
global $array1;
if (isset($x['id'])) {
$id = $x['id'];
$valid = array_filter($array1['injuries']['injury'], create_function('$injury', 'return $injury["id"] == "' . $id . '";'));
if (count($valid) > 0) {
$x = array_merge($x, array_shift($valid));
}
}
return $x;
}
$output = array_map('map', $array2['players']['player']);
echo "<ul>";
$result = array();
foreach ($output as $key => $category) {
if (isset($category['status'])) {
foreach ($category as $index => $value) {
$result[$index][$key] = $value;
echo "<li>" . $value . "</li>";
}
}
}
echo "</ul>";