I'm currently using a system that creates gathers a function name and required function arguments to be executed on the system. However, it outputs the resulting code as a string. For example, I can have something like:
Code: Select all
echo "$this->method($this->arguments)"; // Outputs some_func('foo', TRUE)I've tried using commands such as exec, shell_exec, and others, but they're not quite what I'm looking for. Also, simply writing:
Code: Select all
$this->method($this->arguments);If anyone has any comments, they would be appreciated.
Thank you,
Sphenn