头函数不能与exit,PHP一起使用

时间:2015-07-27 19:57:27

标签: php

我在另一个函数中有一个头函数,但问题是它不能用于退出,即使它在没有退出的情况下工作正常。没有退出,它重定向到test2.php就好了,但是在那里退出,它根本不重定向。请帮忙。

<?php

function goTo($string){

header("Location:".$string);
exit;

}

goTo("test2.php")

?>

1 个答案:

答案 0 :(得分:1)

这是一个工作版本:

<?php

function UrlGo($string){

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

};

UrlGo("http://google.com")

?>