我想使用一个URL将用户重定向到各种传出URL。例如http://example.com/out.php?ofr=2
,其中ofr
指向用户应重定向到的适当URL。
我有以下out.php
的php代码
这是可以接受的,还是有一种更有效的方法来完成此操作(假设以下脚本中有10个左右不同的URL)?
<?php
$ofr = $_GET['ofr'];
if ($ofr == 1) {
header('location: http://google.com');
}
elseif ($ofr == 2) {
header('location: http://yahoo.com');
}
else {
header('location: http://msn.com');
}
?>
编辑:按照建议查看switch语句,我相信它会像这样:
$ofr = $_GET['ofr'];
switch ($ofr){
case 1: header('location: http://example_1.com');
break;
case 2: header('location: http://example_2.com');
break;
default: header('location: http://example_2.com');
break;
}
这看起来正确吗?谢谢!
答案 0 :(得分:2)
首先,我建议使用以下重定向功能:
function redirect($url)
{
$baseUri=_URL_;
if(headers_sent())
{
$string = '<script type="text/javascript">';
$string .= 'window.location = "' . $baseUri.$url . '"';
$string .= '</script>';
echo $string;
}
else
{
if (isset($_SERVER['HTTP_REFERER']) AND ($url == $_SERVER['HTTP_REFERER']))
header('Location: '.$_SERVER['HTTP_REFERER']);
else
header('Location: '.$baseUri.$url);
}
exit;
}
然后在一个名为redirectFiles.php的文件中,对要重定向的网址进行排列:
$redirecUrls = [
'location: http://example_1.com',
'location: http://example_2.com',
'location: http://example_3.com',
]
然后使函数进行重定向:
function redirectUrls($index){
if(isset($redirecUrls[ $index])
return redirect($redirecUrls[ $index])
return false;
}
之后,您可以执行以下操作:
$ofr = $_GET['ofr'];
if($ofr!='')
redirectUrls($ofr)
答案 1 :(得分:0)
尝试这样的事情:
<?php
$ofr=$_GET['ofr'];
$url_array=array([1]=>http://google.com [2]=>http://yahoo.com);
foreach($url_array as $key=>$value)
{
if($ofr==$key)
header('location: ".$value."');
}
?>