在一面test1.php中有个变量$bj;当页面自动跳转到test2.php.仍然后可以读取到这个变量值。test1.php
<?php
$bj="12";
header("Location: test2.php"); 

?>