phpは毎日ランダムな挨拶を自動的に変換する方法を実現する
1623 ワード
この例では、phpが毎日ランダムな挨拶文を自動的に変換する方法について説明します.皆さんの参考にしてください.具体的な分析は以下の通りである.
ここではあらかじめphp配列を定義しておき、中にはランダムな挨拶文が格納されています.呼び出すときは、日、月、年によって挨拶語を自動的に交換するかを指定します.月を選択すると、毎月挨拶語表示が変更され、毎月手動で交換する必要はありません.このphpコードはJSを使用するよりも検索エンジンに友好的です.
使用例:
本稿で述べた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);
本稿で述べたphpプログラム設計に役立つことを願っています.