加入收藏 | 设为首页 | 会员中心 | 我要投稿 安卓应用网 (https://www.0791zz.com/)- 科技、建站、经验、云计算、5G、大数据,站长网!
当前位置: 首页 > 编程开发 > PHP > 正文

php 定义每天发生事件的简单示例

发布时间:2020-05-25 05:02:58 所属栏目:PHP 来源:互联网
导读:php 定义每天发生事件的简单示例

对php定义每天发生的事件感兴趣的小伙伴,下面一起跟随脚本之家 jb51.cc的小编两巴掌来看看吧!
我用这段代码每天自动给网站更换一副背景图片存入数据库


<?PHP
/**
 * php定义每天发生的事件
 *
 * @param 
 * @author 脚本之家 jb51.cc jb51.cc
 **/
// ==========================================================================
//    Creates a file on the server with the day of the month.
//    If the day in the file doesn't match today's date,then do 'event' and update the file.
//
//    I use this to change the daily featured photos from a sql database.
// ==========================================================================
$dates = (idate("d"));
$mydate = "getdates.txt"; 
$fh = fopen($mydate,"r"); 
$theDate = fread($fh,5); 
fclose($fh);
if ($dates <> $theDate){
// Doesn't match what's in the file,so must be a new day. Update file.
 $fp = fopen('getdates.txt',w); 
 fwrite($fp,$dates); 
 fclose($fp);
//  Do something.
}
// Else ignore.
?>
EXAMPLE USE:
					   $query = "SELECT * FROM `photo_user` WHERE `idno` >'0'"; 
					   $result = mysql_query($query) or die(mysql_error()); 
					   while($noticia = mysql_fetch_array($result)) 
   {
								  // Get total records 
								  $total = $total +1; 
   }
// Get current selected user from file.
$myFile = "getuser.txt"; 
$fh = fopen($myFile,"r"); 
$theData = fread($fh,5); 
fclose($fh);
$userNo = $theData;
// Get today's date. 
$dates = (idate("d"));
// See what date is in the file.
$mydate = "getdates.txt"; 
$fh = fopen($mydate,5); 
fclose($fh);
// Check to see if the dates match.
  if ($dates <> $theDate){ 
  $userNo = $userNo + 1;
   if ($userNo > $total){ 
   $userNo = 1; 
}
// Write today's date to file.
 $fp = fopen('getdates.txt',$dates); 
 fclose($fp);
// Write new user id number to file.
 $fp = fopen('getuser.txt',$userNo); 
 fclose($fp);
}
?>
<?php
// Each day a new user is selected. 
$query = "SELECT * FROM `photo_user` WHERE `idno` =' ". $userNo."'"; 
$result = mysql_query($query) or die(mysql_error()); 
?>
/***   来自脚本之家 jb51.cc(jb51.cc)   ***/

(编辑:安卓应用网)

【声明】本站内容均来自网络,其相关言论仅代表作者个人观点,不代表本站立场。若无意侵犯到您的权利,请及时与联系站长删除相关内容!

    推荐文章
      热点阅读