我想知道是否可以复制:
if ($a = 1) {
header('Location: http://google.com');
exit;
} else {
header('Location http://yahoo.com');
exit;
}
使用短手?也许...
$a = 1 ? header('Location: http://google.com') : header('Location http://yahoo.com');
exit;
这似乎不起作用,这意味着我总是被重定向到谷歌。=(