>백엔드 개발 >PHP 튜토리얼 >매일 무작위 인사말을 자동으로 변경하는 PHP 방법_php 기술

매일 무작위 인사말을 자동으로 변경하는 PHP 방법_php 기술

WBOY
WBOY원래의
2016-05-16 20:15:55998검색

이 기사의 예에서는 PHP가 매일 무작위 인사말을 자동으로 변경하는 방법을 설명합니다. 참고할 수 있도록 모든 사람과 공유하세요. 구체적인 분석은 다음과 같습니다.

여기에는 임의의 인사말을 저장하는 PHP 배열이 미리 정의되어 있습니다. 호출할 때 일, 월 또는 연도에 따라 인사말을 자동으로 변경할지 여부를 지정하세요. 월을 선택하면 인사말 없이 매달 하나의 인사말이 표시됩니다. 1월에 수동으로 교체되었으며 이 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 프로그래밍 설계에 도움이 되기를 바랍니다.

성명:
본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.