目录

PHP eval() 函数

❮ PHP 其他参考

示例

将字符串计算为 PHP 代码:

<?php
$string = "beautiful";
$time = "winter";

$str = 'This is a $string $time morning!';
echo $str. "<br>";

eval("\$str = \"$str\";");
echo $str;
?>

上面代码的输出将是:

This is a $string $time morning!
This is a beautiful winter morning!


定义和用法

eval() 函数将字符串计算为 PHP 代码。

该字符串必须是有效的 PHP 代码,并且必须以分号结尾。

笔记:return 语句将立即终止字符串的计算。

提示:此函数对于将 PHP 代码存储在数据库中非常有用。


语法

eval( phpcode)

参数值

Parameter Description
phpcode Required. Specifies the PHP code to be evaluated

技术细节

返回值: 除非在代码字符串中调用 return 语句,否则返回 NULL。然后返回传递给return的值。如果代码字符串中存在解析错误,eval() 将返回 FALSE。
PHP 版本: 4+

❮ PHP 其他参考