我想要做什么:显示加载 gif 或文本...至少在执行 php 之前和期间显示黑屏。
我已经尝试过。
我已经使用 flush () 进行了测试,直到整个 php 进程完成,我什么也得不到。我也不特别喜欢这个概念,但我会接受任何东西。
我正在考虑使用两个页面来完成此任务,尽管当前项目已接近完成并且需要一些时间来整合分散的 html/php 代码。
目前我正在做 3-simpleXML_load_file()、1-include()、1-file_get_contents() 我有 javascript 函数绘制来自 simpleXML_Load_file() 之一的数据...
我准备将部分代码移动到不同的文件,但这是一项艰巨的任务。所以我喜欢一些关于如何进行的建议或建议。
如果我需要详细说明,请询问!
谢谢,JT
<html>
<head>
<?php
$lat = $_POST['Lat'];
$long = $_POST['Lon'];
$weather_hourly = simplexml_load_file('http:....lat='.$lat.'&lon='.$long.'');
?>
<script type="text/javascript">
<!--Plot function-->
$(function()
{
var d =
[
<?php
//Pulling in hourly data to plot temp vs time
$i=0;
$array=array();
while ($i<=100)
{
echo '['. (strtotime($weather_hourly->data->{'time-layout'}->{'start-valid-time'}[$i])*1000) .','.$weather_hourly->data->parameters->temperature->value[$i] .'],';
$value = $weather_hourly->data->parameters->temperature->value[$i];
array_push($array,$value);
$i++;
}
foreach ($array as $key => $value)
{
$value = (string) $value;
$min_sec_array[] = $value;
}
?>
</script>
</head>
<body>
<div id=graph>
</div>
</body