我需要为我创建的所有链接加权旋转器,以便流量可以按加权比例分配到我定义的目的地。我目前使用以下内容:
<?
header('Location: www.destinationwebsite1.com/index.php');
?>
然而,这只会将流量分配给1个来源。我想要根据“权重”分配给我定义的多个目的地。
如:
25% to www.destinationwebsite1.com/index.php
25% to www.destinationwebsite2.com/index.php
25% to www.destinationwebsite3.com/index.php
25% to www.destinationwebsite4.com/index.php
或我选择的任何百分比。有人有什么想法吗?
最佳-N
答案 0 :(得分:1)
使用rand
om号码并根据它将结果发送到其他地方。
// equal weights:
$sites = Array(
"http://www.example.com/",
"http://google.com/",
"http://youtube.com/"
);
header("Location: ".$sites[rand(0,count($sites)-1)]);
// individual weights:
$sites = Array(
"http://www.example.com/" => 50,
"http://google.com/" => 30,
"http://youtube.com/" => 20
);
$rand = rand(0,array_sum($sites)-1);
foreach($sites as $site=>$weight) {
$rand -= $weight;
if( $rand < 0) break;
}
header("Location: ".$site);
答案 1 :(得分:0)
这样的东西?
<?php
$r = rand() / getrandmax();
if ( $r < 0.25 )
{
header( 'Location: www.destinationwebsite1.com/index.php' );
}
elseif ( $r < 0.50 )
{
header( 'Location: www.destinationwebsite2.com/index.php' );
}
elseif ( $r < 0.75 )
{
header( 'Location: www.destinationwebsite3.com/index.php' );
}
else
{
header( 'Location: www.destinationwebsite4.com/index.php' );
}
?>
这应该统计地将25%的访问者发送到每个网站。 要更改发送到每个网站的访问者的比例,只需更改加权数字。