当前位置:首页 > PHP教程 > php应用 > 列表

php实现每天自动变换随机问候语的方法

发布:smiling 来源: PHP粉丝网  添加日期:2021-05-26 16:11:09 浏览: 评论:0 

本文实例讲述了php实现每天自动变换随机问候语的方法,分享给大家供大家参考,具体分析如下:

这里预先定义一个php数组,里面存放一些随机问候语,调用的时候指定是按照天,月还是年来自动更换问候语,如果选择月,则会每月更换一条问候语显示,不用每个月手动更换了,并且这段php代码比使用JS实现对搜索引擎友好

  1. function RandomQuoteByInterval($TimeBase$QuotesArray){ 
  2.   // Make sure it is a integer 
  3.   $TimeBase = intval($TimeBase); 
  4.   // How many items are in the array? 
  5.   $ItemCount = count($QuotesArray); 
  6.   // By using the modulus operator we get a pseudo 
  7.   // random index position that is between zero and the 
  8.   // maximal value (ItemCount) 
  9.   $RandomIndexPos = ($TimeBase % $ItemCount); 
  10.   // Now return the random array element 
  11.   return $QuotesArray[$RandomIndexPos]; 
  12. /* 
  13. ** --> See the example section below for a 
  14. **   detailed instruction. 
  15. */ 

使用范例:

  1. // Use the day of the year to get a daily changing 
  2. // quote changing (z = 0 till 365) 
  3. $DayOfTheYear = date('z'); 
  4. // You could also use: 
  5. // --> date('m'); // Quote changes every month 
  6. // --> date('h'); // Quote changes every hour 
  7. // --> date('i'); // Quote changes every minute 
  8. // Example array with some random quotes 
  9. $RandomQuotes = array
  10.   'No animals were harmed in the making of this snippet.'
  11.   'Nice snippets'
  12.   'The modulus operator rocks!'
  13.   'PHP is cool.' 
  14. ); 
  15. print RandomQuoteByInterval($DayOfTheYear$RandomQuotes);

Tags: php自动变换随机语

分享到: