php实现每天自动变换随机问候语的方法
发布:smiling 来源: PHP粉丝网 添加日期:2021-05-26 16:11:09 浏览: 评论:0
本文实例讲述了php实现每天自动变换随机问候语的方法,分享给大家供大家参考,具体分析如下:
这里预先定义一个php数组,里面存放一些随机问候语,调用的时候指定是按照天,月还是年来自动更换问候语,如果选择月,则会每月更换一条问候语显示,不用每个月手动更换了,并且这段php代码比使用JS实现对搜索引擎友好
- function RandomQuoteByInterval($TimeBase, $QuotesArray){
- // Make sure it is a integer
- $TimeBase = intval($TimeBase);
- // How many items are in the array?
- $ItemCount = count($QuotesArray);
- // By using the modulus operator we get a pseudo
- // random index position that is between zero and the
- // maximal value (ItemCount)
- $RandomIndexPos = ($TimeBase % $ItemCount);
- // Now return the random array element
- return $QuotesArray[$RandomIndexPos];
- }
- /*
- ** --> See the example section below for a
- ** detailed instruction.
- */
使用范例:
- // Use the day of the year to get a daily changing
- // quote changing (z = 0 till 365)
- $DayOfTheYear = date('z');
- // You could also use:
- // --> date('m'); // Quote changes every month
- // --> date('h'); // Quote changes every hour
- // --> date('i'); // Quote changes every minute
- // Example array with some random quotes
- $RandomQuotes = array(
- 'No animals were harmed in the making of this snippet.',
- 'Nice snippets',
- 'The modulus operator rocks!',
- 'PHP is cool.'
- );
- print RandomQuoteByInterval($DayOfTheYear, $RandomQuotes);
Tags: php自动变换随机语
- 上一篇:php通过curl模拟登陆DZ论坛
- 下一篇:PHP输出一个等腰三角形的方法
推荐文章
热门文章
最新评论文章
- 写给考虑创业的年轻程序员(10)
- PHP新手上路(一)(7)
- 惹恼程序员的十件事(5)
- PHP邮件发送例子,已测试成功(5)
- 致初学者:PHP比ASP优秀的七个理由(4)
- PHP会被淘汰吗?(4)
- PHP新手上路(四)(4)
- 如何去学习PHP?(2)
- 简单入门级php分页代码(2)
- php中邮箱email 电话等格式的验证(2)