重定向到PHP脚本完成时指定的URL?
如何让PHP函数在完成运行时转到特定网站?
例如:
<?php
//SOMETHING DONE
GOTO(http://example.com/thankyou.php);
?>
我真的想要以下内容...
<?php
//SOMETHING DONE
GOTO($url);
?>
我想做这样的事情:
<?php
//SOMETHING DONE THAT SETS $url
header('Location: $url');
?>