我试图随机重定向2 URL,但它不起作用。我的代码<?php$urls=readStack();if(empty($urls)) { $urls = shuffle(array('https://domain1.com', 'https://domain2.com')); $url=array_pop($urls); storeStack($urls); header('Location:' .$url); ?>帮助如何解决这个问题?
1 回答
慕婉清6462132
TA贡献1804条经验 获得超2个赞
我不知道是什么,但你可能想要这样的东西readStack()storeStack()
$arr = array('https://domain1.com', 'https://domain2.com');
shuffle($arr); // This returns a boolean and the array is modified inside the function so just pass in the array
$url=array_pop($arr); // Pop the top most element from the array and store into $url
header("Location: $url");
仅该代码就为您提供了来自这两个的随机URL
- 1 回答
- 0 关注
- 62 浏览
添加回答
举报
0/150
提交
取消