1

每次有人访问我的网站时,我都会显示三个选项之一(A、B、C)。如果用户喜欢这个选项,他就会点击它。我想找到一种方法来显示较少点击次数较少的选项。在 PHP 中执行此操作的最佳方法是什么?

我通过简单地在数组中添加“投票”来保存 MongoDB 中的点击:

$option[]='a';//one click on option A
$option[]='b';//one click on option B
$option[]='b';//another click on option B

try{
 $m=new Mongo();
 $c=$m->db->clicks;
 $c->save($option);
 $m->close();
}
catch(MongoConnectionException $e){ die('Error connecting to MongoDB server. ');}
catch(MongoException $e){ die('Error: '.$e->getMessage());} 

这打印:

Array
(
    [0] => a
    [1] => b
    [2] => b
)
4

2 回答 2

1

您可以使用 PHP 和数据库来完成,但您可能更喜欢使用Google 网站优化器,我认为它提供了该选项并且效果很好。

于 2011-01-17T22:30:48.410 回答
1

不确定我是否正确理解了您的问题。但是,如果我这样做了,那么以下可能是一种相当幼稚甚至是冗长的方式来做我认为您想做的事情:

// assume the following fictional values,
// that is, the amount of clicks each option has received thusfar
$clicks = array(
  'A' => 10,
  'B' => 40,
  'C' => 50
);

// what is the total amount of clicks?
$totalClicks = array_sum( $clicks );

// determine the lower bound percentages of the option clicks
$clickPercentageBounds = array(
  'A' => 0,
  'B' => ( ( $clicks[ 'A' ] + 1 ) / $totalClicks ) * 100,
  'C' => ( ( $clicks[ 'A' ] + $clicks[ 'B' ] + 1 ) / $totalClicks ) * 100
);

// get random percentage
$rand = mt_rand( 0, 100 );

// determine what option to show, based on the percentage
$option = '';
switch( true )
{
    case $rand < $clickPercentageBounds[ 'B' ]:
        $option = 'A';
        break;
    case $rand < $clickPercentageBounds[ 'C' ]:
        $option = 'B';
        break;
    default:
        $option = 'C';
        break;
}

var_dump( $option );
于 2011-01-17T22:53:26.273 回答