当前位置:Gxlcms > PHP教程 > PHPeval函数

PHPeval函数

时间:2021-07-01 10:21:17 帮助过:21人阅读

eval() 函数把字符串按照 PHP 代码来计算。
该字符串必须是合法的 PHP 代码,且必须以分号结尾。
如果没有在代码字符串中调用 return 语句,则返回 NULL。如果代码中存在解析错误,则 eval() 函数返回 false。

For Example:

classPass{private$var1;
        private$var2;

        publicfunction__construct($var1,$var2){$varchar="this is a construct function,is hava two varchar $var1 and $var2";
            eval("\$varchar=\".$varchar.\";");
            echo$varchar;
        }
    }

    $P=new Pass("HELLO", "WORLD");

输出结果:
this is a construct function,is hava two varchar HELLO and WORLD.

版权声明:本文为博主原创文章,未经博主允许不得转载。

以上就介绍了PHP eval函数,包括了方面的内容,希望对PHP教程有兴趣的朋友有所帮助。

人气教程排行