标题中的变量

时间:2011-05-26 07:26:01

标签: php redirect header

$c = 'Hello.php';

header('Refresh: 2; URL= $c ');

这不起作用。这合法吗?

2 个答案:

答案 0 :(得分:5)

这是合法的,但您需要使用“”作为字符串分隔符

$c = 'Hello.php';

header("Refresh: 2; URL= $c ");

另请参阅:http://nl.php.net/manual/en/language.types.string.php关于单引号和双引号的字符串

答案 1 :(得分:4)

变量插值仅出现在双引号(")字符串中。

$c = 'Hello.php';

header("Refresh: 2; URL= $c");