中文字幕av专区_日韩电影在线播放_精品国产精品久久一区免费式_av在线免费观看网站

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

利用php怎么實現一個每天自動變換隨機問候語的功能

發布時間:2021-01-29 16:15:35 來源:億速云 閱讀:193 作者:Leah 欄目:開發技術

利用php怎么實現一個每天自動變換隨機問候語的功能?針對這個問題,這篇文章詳細介紹了相對應的分析和解答,希望可以幫助更多想解決這個問題的小伙伴找到更簡單易行的方法。

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);

關于利用php怎么實現一個每天自動變換隨機問候語的功能問題的解答就分享到這里了,希望以上內容可以對大家有一定的幫助,如果你還有很多疑惑沒有解開,可以關注億速云行業資訊頻道了解更多相關知識。

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

php
AI

潜江市| 玉山县| 怀远县| 新宾| 陇西县| 天津市| 萨嘎县| 枣庄市| 河池市| 曲周县| 岢岚县| 内黄县| 沅江市| 麻江县| 攀枝花市| 阜城县| 阳高县| 奉化市| 汤阴县| 平湖市| 高碑店市| 亚东县| 衡阳县| 那坡县| 郎溪县| 天津市| 炉霍县| 永康市| 攀枝花市| 阳高县| 鄢陵县| 东乡族自治县| 阜南县| 布拖县| 绥德县| 连云港市| 临夏市| 大安市| 保山市| 藁城市| 汪清县|