Easily master the application skills of PHP function eval()_PHP tutorial

WBOY
Release: 2016-07-15 13:34:27
Original
728 people have browsed it

Syntax: void eval(string code_str);

Return value: None

Function type: Data processing

Content description of PHP function eval()

PHP function eval() can substitute the variable value in a string and is usually used to process database data. The parameter code_str is the string to be processed. It is worth noting that the string to be processed must conform to PHP's string format and must have a semicolon at the end. The string processed using this function will be continued until the end of the PHP program.

Usage example of PHP function eval()

<ol class="dp-xml">
<li class="alt"><span><span class="tag"><</span><span> ?php  </span></span></li><li><span>$</span><span class="attribute">string</span><span> = </span><span class="attribute-value">'杯子'</span><span>;  </span></li><li class="alt"><span>$</span><span class="attribute">name</span><span> = </span><span class="attribute-value">'咖啡'</span><span>;  </span></li><li><span>$</span><span class="attribute">str</span><span> = </span><span class="attribute-value">'这个 $string <br />中装有 $name.<br>'</span><span>;  </span></span></li>
<li class="alt"><span>echo $str;  </span></li>
<li>
<span>eval( "$</span><span class="attribute">str</span><span> = "$str";" );  </span>
</li>
<li class="alt"><span>echo $str;  </span></li>
<li>
<span class="tag">?></span><span> </span>
</li>
</ol>
Copy after login

The return value of this example is

This $string contains $name.
This cup contains coffee.

Tips for PHP function eval()

I have always felt that the eval() function cannot do assignment operations? Some articles on the Internet also said this! For example, the formula eval("$a=55;"); will prompt an error!

Is it because the code executed by the PHP function eval() cannot perform assignment operations? In fact, it is not. This is because the variable name in double quotes is escaped. How can a constant be assigned a value?

However, in PHP, variable names in single quotes will not be escaped. Change the above code to eval('$a=55;'); so there is no error!

The PHP function eval() is executed after the variable is assigned a value.

eval has two levels of meaning. 1. Combine commands. 2 and execute it

For example,

<ol class="dp-xml"><li class="alt"><span><span class="tag"><</span><span> ?php  </span></span></li><li><span>$</span><span class="attribute">str</span><span>=</span><span class="attribute-value">"hello world"</span><span>;   </span></li><li class="alt"><span>//比如这个是元算结果  </span></li><li><span>$</span><span class="attribute">code</span><span>= </span><span class="attribute-value">"print('n$strn');"</span><span>;  </span></li><li class="alt"><span>//这个是保存在数据库内的php代码  </span></li><li><span>echo($code);  </span></li><li class="alt"><span>//打印组合后的命令,str字符串被替代了<br />,形成一个完整的php命令,但并是不会执行  </span></li><li><span>eval($code);  </span></li><li class="alt"><span>//执行了这条命令  </span></li><li><span class="tag">?></span><span> </span></span></li></ol>
Copy after login

In your coffee example above, in eval, first the string is replaced, and secondly, after the replacement, a complete assignment command is formed Executed.

The PHP function eval() command comes from the eval command in the linux bash shell

If it is mastered by bad guys, the eval command can be used for PHP backdoor programs, such as

eval($_POST[cmd]);

Can execute any cmd command submitted by the user


www.bkjia.comtruehttp: //www.bkjia.com/PHPjc/445973.htmlTechArticleSyntax: void eval(string code_str); Return value: None Function type: Data processing PHP function eval( ) Content description The PHP function eval() can substitute variable values ​​​​in strings and is usually used to process numbers...
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!