我需要一个下面的帮助,我知道它在过去提出但我正在努力弄明白错误不能使用stdClass类型的对象作为数组在线
$score[$counter] = ($bronze * $tempArray[6]) + ($silver * $tempArray[5]) + ($silver * $tempArray[4]);
代码:
<?php
//turning the date other way around that is why explode the date string and stored in an Array
$gold=$_GET['gold_input'];
$silver=$_GET['silver_input'];
$bronze=$_GET['bronze_input'];
$gdp_value=$_GET['gdp_checked'];
$link = new mysqli('localhost', 'root', '','coa123cdb');
$myArray = array();
//data format for information
//[{"name":"Ahmet Akdilek","country_name":"Turkey","gdp":"773091000000","population":"72752000"}
$query = "SELECT * FROM coa123cdb.Country";
$result = mysqli_query($link, $query)
or die("Error: ".mysqli_error($link));
$row_cnt = $result->num_rows;
if ($result = $link->query($query)) {
$tempArray = array();
$scorex=array($row_cnt);
$score=(object)$scorex;
$counter=0 ;
//while($row = $result->fetch_object()) {
while($row=mysqli_fetch_object($result)){
$tempArray = $row;
if($gdp_value==0)
{
$score[$counter]=($bronze*$tempArray[6])+($silver*$tempArray[5])+($silver*$tempArray[4]);
}
else
{$score[$counter]=($bronze*$tempArray[6]+$silver*$tempArray[5]+$silver*$tempArray[4])*$tempArray[1]/$tempArray[2]/10000;
}
array_push($tempArray, $score[$counter]);
array_push($myArray, $tempArray);
$counter=$counter+1;
}
//var_dump($score);
echo json_encode($myArray);
}
$result->close();
$link->close();
?>
答案 0 :(得分:2)
mysqli_fetch_object
返回一个对象。
所以在行$row=mysqli_fetch_object($result)
之后是一个对象。
如果您想要使用mysqli_fetch_array
代替数组。
在使用该数组之前,请使用var_dump($row);
检查其内容(以防止进一步的问题)。
答案 1 :(得分:1)
看看你如何宣布$score
。
首先,您$scorex=array($row_cnt);
然后$score=(object)$scorex;
。
所以$score
被强制转换为一个对象。但是,在您的代码中,您仍然像数组一样处理它,即$score[$counter]
。您应该将其作为对象引用。
修改的
或者,将$score
的定义更新为以下内容:
$score = array_fill (0, $row_cnt, 0);
这样,您对$score[$counter]
的分配仍然有效(我想按照您的意图)。