我无法让它发挥作用。
<?php
$_SESSION['age'] = 11
if($_SESSION['age'] < 14) {
echo "<h2>Your only $_SESSION['age']? Thats Young!</h2>";
}
?>
答案 0 :(得分:3)
如果你想在echo
函数中回显PHP变量,你必须先用"
打破echo,然后添加&#34; merge char&#34; .
,然后是你的变量然后再次&#34;合并char&#34;和"
。
另外,请不要忘记在包含$_SESSION['age']
定义的行末尾添加分号。
将您的代码编辑为:
<?php
$_SESSION['age'] = 11;
if($_SESSION['age'] < 14) {
echo "<h2>Your only ".$_SESSION['age']."? Thats Young!</h2>";
}
?>