如何使这些链接在PHP中旋转?

时间:2015-10-05 23:25:33

标签: php

以下是我正在使用的代码。

我希望能够将随机链接旋转给用户。

我希望它在link1.com / link2.com / link3.com

之间轮换,而不仅仅是link1.com。

如何修改此代码才能执行此操作?

提前谢谢!!!

<?php

    require_once('geoplugin.class.php');
    $geoplugin = new geoPlugin();
    $geoplugin->locate();


   $geo_region = $geoplugin->region;  

    switch($geo_region) {
        case 'CA':
             header('Location: http://www.link1.com');
             exit; 



        default: // exceptions
               header('Location: http://www.everyoneelsegoeshere.com');
               exit;

         }

 ?>

1 个答案:

答案 0 :(得分:0)

试试这个:

require_once('geoplugin.class.php');
$geoplugin = new geoPlugin();
$geoplugin->locate();
$geo_region = $geoplugin->region;

$links = array('link1.com','link2.com','link3.com');

switch($geo_region) {
    case 'CA':
         header('Location: http://'.$links[array_rand($links)]);
         exit; 
    default: // exceptions
        header('Location: http://www.everyoneelsegoeshere.com');
        exit;
    }