我只能从我的sql DB获取值(没有字段和表格)? 例如: " pietro"," la spada" ... 我用这个代码
<?php
// Create connection
$con=mysqli_connect("localhost","DBname","","my_DBname");
// Check connection
if (mysqli_connect_errno())
{
echo "Failed to connect to MySQL: " . mysqli_connect_error();
}
// This SQL statement selects ALL from the table 'user'
$sql = "SELECT * FROM `user` WHERE 1";
// Check if there are results
if ($result = mysqli_query($con, $sql))
{
// If so, then create a results array and a temporary one
// to hold the data
$resultArray = array();
$tempArray = array();
// Loop through each row in the result set
while($row = $result->fetch_object())
{
// Add each row into our results array
$tempArray = $row;
array_push($resultArray, $tempArray);
}
// Finally, encode the array to JSON and output the results
echo json_encode($resultArray);
}
// Close connections
mysqli_close($result);
mysqli_close($con);
?>
但结果包括字段。 例如: &#34;姓名&#34;:&#34; Pietro&#34;,&#34;姓氏&#34;:&#34; La Spada&#34; ......
答案 0 :(得分:1)
while($row = $result->fetch_object())
{
// Add each row into our results array
$tempArray = $row;
$resultArray = array_merge($resultArray, array_values($tempArray));
}
应该是它