微信公众号搜"智元新知"关注
微信扫一扫可直接关注哦!

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)   ***/

版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。

相关推荐