PHP 랜덤으로 문구보이기
페이지 정보
본문
방법 1.
<?PHP
//srand();
//srand((double)microtime()*1000000);
$text = array("안녕~?", "방가와~", "할룽~", "방가~방가~", "까껑~");
echo $text[rand(0,count($text)-1)];
?>
방법 2.
<?php
$msg[] = '안녕~?';
$msg[] = '방가와~';
$msg[] = '할룽~';
$msg[] = '방가~방가~';
$msg[] = '까껑~';
echo $msg[rand(0,count($msg)-1)];
?>
참고자료
https://www.xpressengine.com/qna/1534721
<?PHP
//srand();
//srand((double)microtime()*1000000);
$text = array("안녕~?", "방가와~", "할룽~", "방가~방가~", "까껑~");
echo $text[rand(0,count($text)-1)];
?>
방법 2.
<?php
$msg[] = '안녕~?';
$msg[] = '방가와~';
$msg[] = '할룽~';
$msg[] = '방가~방가~';
$msg[] = '까껑~';
echo $msg[rand(0,count($msg)-1)];
?>
참고자료
https://www.xpressengine.com/qna/1534721
댓글목록
등록된 댓글이 없습니다.