这是令人烦恼的代码:
<?php
//some code here
$zone = 'op';
$url = 'thread-list.php?zone=$zone';
header('Location : '.$url);
?>
标题之前和之后的所有内容都正常工作但页面未被重定向!我该怎么办? 使用Header在其他页面上工作正常,除了这里!
答案 0 :(得分:1)
使用此:
“location”和“:”
之间不应有空格$url='http://google.com' ;
header("location: $url");
OR
header("Location: ".$url);
另外
$url = 'thread-list.php?zone=$zone';
此处$zone
是错误它不会打印$zone
答案 1 :(得分:0)
你应该使用:
header("Location: $url");
(double quotes evaluate the content)
或
ValueError: The truth value of a Series is ambiguous. Use a.empty, a.bool(), a.item(), a.any() or a.all().
{{3}}