中断从 eval 内部调用 eval 的函数

Break out of function that calls eval from within the eval

我想eval() 使调用它的函数也结束。但是我不想停止整个应用程序。

我正在使用 include 将第三方应用程序包含到我自己的应用程序中。第三方应用程序最终调用了一个函数,该函数首先允许我通过钩子注入代码,然后在函数结束时调用 exit();.

我不想手动编辑他们的代码。而且我也不想使用 exec() 或 readfile() 或 curl() 包含第三方应用程序或通过 http 或任何其他类似方法包含。因为我希望客户端上下文在第三方脚本中保持存在。 (否则第三方脚本会认为我自己的服务器是客户端,比如第三方脚本总是会看到$_SERVER['REMOTE_ADDR']127.0.0.1。而我不想这样。)

简而言之,发生了以下情况:

我的申请:

// do stuff
// ...
chdir("path/to/third/party/application");
include ("path/to/third/party/application/index.php");
chdir("path/to/my/application");
// ...
// do more stuff

第三方应用:

// do some stuff
// ...
doLastStuff();

function doLastStuff() {
    // doing some last stuff
    // ...

    $hook = "..."; // get code from database
    if ($hook) {
        eval($hook);
    }
    exit();
}

问题是最后的 exit(); 也停止了我自己的脚本。我不想那样。任何人都可以找到一种方法来避免 exit() 从挂钩内部停止我的脚本吗?

我可以将任何字符串放入 $hook 中。

我已经自己解决了这个问题。诀窍是在评估代码中引发异常。并将包含在我自己的应用程序中的 try/catch 中。

我的申请:

// do stuff
// ...
chdir("path/to/third/party/application");
try {
    include ("path/to/third/party/application/index.php");
}
catch (Exception $e) {
}
chdir("path/to/my/application");
// ...
// do more stuff

第三方应用:

// do some stuff
// ...
doLastStuff();

function doLastStuff() {
    // doing some last stuff
    // ...

    $hook = "throw new Exception();"; // get code from database

    if ($hook) {
        eval($hook);
    }
    exit(); // will no longer be executed...
}

我也可以引发一个自定义的派生异常 class 所以我只捕获我自己的异常而让其他异常未被捕获。