我有两个文件file4.php和file1.php
使用 INCLUDE 如何将它们放入比率中,如果file4.php显示4次,则file1.php应显示1次,比例为4:1。什么是最佳做法?
<?php
{
include("file4.php");
} else {
include("file1.php");
}
?>
答案 0 :(得分:7)
这将显示随时间推移的两个页面中的一个,包含4:1比例的文件。http://en.wikipedia.org/wiki/Law_of_large_numbers
$randInt = rand (1, 5);
if ($randInt > 1) include("file4.php");
else include("file1.php");
答案 1 :(得分:-2)
file4.php:
$GLOBALS['counter']++;
file1.php:
$GLOBALS['counter']++;
主文件:
if ($GLOBALS['counter'] % 5 == 0) {
include('file1.php');
} else {
include('file4.php');
}
然后坐下来想知道为什么你需要这种东西。