我正在使用下面提到的代码 (get_data.php) 将 JSON 数据发送到 AJAX 调用。我想包含相同的 PHP 文件来获取 count($ret)。当我包含此文件时,无法获取 count($ret) 但文件会被强制下载。如果我删除“header(”Content-type:text/json“);” 它可以工作,但我需要它来发送 JSON 响应。包含此文件时,任何人都可以帮助我避免强制下载吗?
获取数据.php:
<?php
header("Content-type: text/json");
include('connect.php');
global $conn;
$site_id = $_GET['site_id'];
$dbh = $conn->prepare('SELECT UNIX_TIMESTAMP(current_ts), response_time FROM site_response WHERE current_ts >= DATE_SUB( NOW( ) , INTERVAL 30 MINUTE ) AND site_id ='.$site_id.'');
$dbh->bindParam(':site_id', $site_id);
$dbh->execute();
$graph_data = $dbh->fetchAll();
$ret = array();
foreach($graph_data as $data)
{
$current_time = $data['UNIX_TIMESTAMP(current_ts)']*1000;
$response_time = $data['response_time']*1;
$ret[] = array($current_time, $response_time);
}
echo json_encode($ret);
?>