Php eval function usage Summary

Source: Internet
Author: User

Eval definition and usage

The eval () function calculates the string according to the PHP code.

The string must be a valid PHP code and must end with a semicolon.

If the return statement is not called in the code string, NULL is returned. If a parsing error exists in the Code, the eval () function returns false.

Syntax
Eval (phpcode)
  
Parameter description
Phpcode is required. Specifies the PHP code to be calculated.

Tips and comments
Note: The return statement immediately terminates string calculation.
Note: This function is useful for storing code in Database Text fields for future computation.
Example

Copy codeThe Code is as follows: <? Php
$ String = "beautiful ";
$ Time = "winter ";
$ Str = 'this is a $ string $ time morning! ';
Echo $ str. "<br/> ";
Eval ("$ str =" $ str ";");
Echo $ str;
?>

Output:
Copy the code below. This is a $ string $ time morning!
This is a beautiful winter morning!
The eval () function is also useful in the CodeIgniter framework. In the/system/database/DB. php file, a class CI_DB is dynamically defined according to the system configuration. The specific code snippet is as follows :?Copy codeThe Code is as follows: if (! Isset ($ active_record) OR $ active_record = TRUE)
{
Require_once (BASEPATH. 'database/DB_active_rec.php ');
If (! Class_exists ('Ci _ db '))
{
Eval ('class CI_DB extends CI_DB_active_record {}');
}
}
Else
{
If (! Class_exists ('Ci _ db '))
{
Eval ('class CI_DB extends CI_DB_driver {}');
}
}
Require_once (BASEPATH. 'database/drivers/'. $ params ['dbdriver']. '/'. $ params ['dbdriver '].' _ driver. php ');
// Instantiate the DB adapter
$ Driver = 'Ci _ DB _ '. $ params ['dbdriver']. '_ driver ';
$ DB = new $ driver ($ params );

  

This function can be used to substitute variable values in a string for processing database data. The code_str parameter is the string to be processed. It is worth noting that the string to be processed must conform to the PHP string format and contain a semicolon at the end. The strings processed by using this function are continued to the end of the PHP program.

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.