php如何實現隨機跳轉網址

2020-07-16 10:06:32

php隨機跳轉網址方法

1、首先使用array將所有url存在陣列裡或者儲存在資料庫中;

2、然後使用array_rand隨機獲取一個陣列下標;

3、最後使用header並結合隨機獲取的url進行頁面跳轉即可

<?php
$arr = array(
    'https://www.baidu.com',
    'https://cn.bing.com/',
    'http://google.com/'
);
$key = array_rand($arr, 1);
//輸出隨機內容
// echo $arr[$key];
header('Location: ' . $arr[$key]);
exit;

以上就是php如何實現隨機跳轉網址的詳細內容,更多請關注TW511.COM其它相關文章!