为了账号安全,请及时绑定邮箱和手机立即绑定

使用 PHP 随机重定向

使用 PHP 随机重定向

PHP
尚方宝剑之说 2022-09-24 17:19:13
我试图随机重定向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


查看完整回答
反对 回复 2022-09-24
  • 1 回答
  • 0 关注
  • 62 浏览

添加回答

举报

0/150
提交
取消
意见反馈 帮助中心 APP下载
官方微信