嘿,
我对PHP还是很陌生,以下脚本有问题。这个想法是从数据库中读取内容并以json格式显示。我在此页面上找到了此内容:
https://codewithchris.com/iphone-app-connect-to-mysql-database/
<?php
// Create connection
$con=mysqli_connect("localhost","***","***","***");
// Check connection
if (mysqli_connect_errno())
{
echo "Failed to connect to MySQL: " . mysqli_connect_error();
}
// This SQL statement selects ALL from the table 'Locations'
$sql = "SELECT * FROM Locations";
// 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();
$resultArray = [];
$tempArray = [];
// 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($con);
?>
它工作得很好,并显示了我数据库的所有内容。
问题是,如果我通过phpMyAdmin对数据库进行了更改,则php脚本仍会像以前一样显示内容。
另一个奇怪的行为是,例如,如果我重命名php。脚本从“ service.php”到“ service1.php”并加载该脚本,它将反映对数据库所做的更改。
我的问题是:
谢谢
答案 0 :(得分:0)
很可能您的PHP文件已被缓存。尝试将这些行添加到.php文件的开头。
header("Last-Modified: " . gmdate("D, d M Y H:i:s") . " GMT");
header("Cache-Control: no-store, no-cache, must-revalidate");
header("Cache-Control: post-check=0, pre-check=0", false);
header("Pragma: no-cache");
header("Expires: Sat, 10 Jul 1990 05:00:00 GMT"); // Date must be in the past
然后重新启动服务器