爲什麼我在使用此函數時遇到未識別的索引錯誤,它輸出的代碼是我想要的,但它也將錯誤引入頁面?身份不明的索引錯誤
if($result) {
$jsonData = convert($result);
}
function convert($result) {
$i = 0;
$intermediate = array();
while($rows = mysqli_fetch_assoc($result)) {
$key = $rows['POS'];
$x = $i;
$y = $rows['COUNT'];
$intermediate[$key][] = array('x' => count($intermediate[$key]), 'y' => $y);
$i++;
}
$output = array();
foreach($intermediate as $key => $values) {
$output[] = array(
"key" => $key,
'values' => $values
);
}
return json_encode($output, JSON_NUMERIC_CHECK);
它返回的數據是
[{ 「鍵」: 「OW1」, 「值」:[{ 「×」:0, 「Y」:4},{ 「×」: 1, 「Y」:3},{ 「×」:2 「Y」:2},{ 「×」:3, 「Y」:1},{ 「×」:4, 「Y」:1} ]},{ 「鍵」: 「OW2」, 「值」:[{ 「×」:0, 「Y」:4},{ 「×」:1, 「y」 的:2},{ 「×」: 2, 「Y」:1},{ 「×」:3, 「Y」:3},{ 「×」:4, 「Y」:2}]},{ 「鍵」: 「OW3」,「值「:[{」 × 「:0,」 Y 「:4},{」 × 「:1,」 Y 「:5},{」 × 「:2」,Y 「:1},{」 ×「: 3, 「Y」:2},{ 「×」:4, 「Y」:1}]}]
和錯誤這些
說明:未定義指數:OW1在C:\瓦帕\ WWW \ multibar.html.php 24行
說明:未定義指數:OW2在C:\瓦帕\ WWW \ multibar.html.php上線24
說明:未定義指數:OW3在C:\瓦帕\ WWW \ multibar.html.php上第24行
完美工作,非常感謝! – Engl12 2014-10-28 19:09:23