目前有两个文件,一个是index.html,另一个是code/index.php
我想以api的形式,用js将code/index.php内的数值显示到index.html内
支持jq和ajax轮询,但是不太会写
另附code/index.php代码
求详细解答
<?php $data=file("date.txt"); $ini=0; $p= rand(10, 99); if(count($data)){ $data=explode(",",$data[0]); $now=date("Y-m-d H:i:s"); $second=floor((strtotime($now)-strtotime($data[0]))%86400); $ini=$data[1]; if($second>=35){ $fp=fopen("date.txt","w"); $str=date("Y-m-d H:i:s").",".($data[1]+$p); fputs($fp,$str); $ini=$data[1]+$p; } }else{ $fp=fopen("date.txt","w"); $str=date("Y-m-d H:i:s").",".$ini; fputs($fp,$str); } echo $ini; ?>