eval

 mixed eval ( string $code ) 

説明

Evaluates the given code as PHP.

戻り値

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.