首页 > 开发 > PHP > 正文

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

2024-05-04 23:35:04
字体:
来源:转载
供稿:网友

这篇文章主要介绍了php实现每天自动变换随机问候语的方法,涉及时间与数组的相关操作技巧,需要的朋友可以参考下

本文实例讲述了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); 

希望本文所述对大家的php程序设计有所帮助。

发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表