该eval()
函数将字符串评估为PHP代码。
eval(code)
代码-要评估的PHP代码。
eval()
除非在代码字符串中调用return语句,否则该函数返回null。然后返回传递给return的值。如果代码字符串中存在解析错误,则eval()
返回false。
<?php $one = "Demo"; $two = "text"; $res = 'This is $one $two!'; echo $res. "<br>"; eval("\$res = \"$res\";"); echo $res; ?>
输出结果
以下是输出。
This is $one $two! This is Demo text!