您现在的位置是:首页 > PHP函数

李清波 2021-06-17 PHP函数 1642 复制当前网址

eval



PHP eval() 函数

定义和用法

eval() 函数把字符串按照 PHP 代码来计算。


该字符串必须是合法的 PHP 代码,且必须以分号结尾。

如果没有在代码字符串中调用 return 语句,则返回 NULL。如果代码中存在解析错误,则 eval() 函数返回 false。


语法

eval(phpcode)


参数描述
phpcode必需。规定要计算的 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!


文章来源:http://liqingbo.com/blog-930.html

上一篇:exit

下一篇:die

评论