0

我现在正在学习 PHP,但我一直坚持这一点:

<?php
$links= array();
links[0]="https://www.google.co.in/";
links[1]="http://www.reddit.com/";
$n= rand(0,1);
$select= $links[$n];
?>
<body>
  <a href="<?php echo $select; ?>">Random</a>
</body>

我希望页面随机重定向到 google 或 reddit,但我不明白问题出在哪里。有什么解决办法吗?

4

4 回答 4

2

链接变量缺少 $ ...将代码更改为

links[0]="https://www.google.co.in/";
links[1]="http://www.reddit.com/";

$links[0]="https://www.google.co.in/";
$links[1]="http://www.reddit.com/";
于 2013-03-31T06:48:07.447 回答
2
<?php
$links= array();
$links [0] = "https://www.google.co.in/";
$links [1] = "http://www.reddit.com/";
$n = rand (0, 1);
$select = $links [$n];

header ("Location: $select");
?>
于 2013-03-31T06:48:16.323 回答
0
<?php
$links = array(
  "https://www.google.co.in/",
  "http://www.reddit.com/",
// ...
);
$randomLink = $links[rand(0, count($links)-1)];
header("Location: {$randomLink}");
exit();
于 2013-03-31T06:53:23.660 回答
0

如果要自动重定向:

1- 使用 HTML META 标签

<meta http-equiv="refresh" content="0;URL='<?php echo $select; ?>'">

2-或使用 PHP 标头

header("Location: $select");
exit();

完整代码:

<?php
$links= array();
$links [0] = "https://www.google.co.in/";
$links [1] = "http://www.reddit.com/";
$n = rand (0, 1);
$select = $links [$n];
header("Location: $select");
exit();
?>
于 2013-03-31T06:49:52.470 回答