eval

Example

 mixed eval ( string $code ) 

Description

Evaluates the given code as PHP.

Return Values

eval() returns NULL unless return is called in the evaluated code, in which case the value passed to return is returned. If there is a parse error in the evaluated code, eval() returns FALSE and execution of the following code continues normally.