实现从 PHP 5.3 到 5.2 向后兼容的方法(预处理器指令?)

发布于 2024-12-15 20:27:09 字数 329 浏览 1 评论 0原文

我编写了一个很酷的小型 PHP 库,但它使用了闭包,当我在我的网络主机(1and1)上运行该应用程序时,会导致解析错误(不是运行时错误!)。我想要的是像 C++ 预处理器指令或特定于 CSS 版本的注释之类的东西,它基本上会忽略 PHP << 的代码段。 5.3

$this->register_validator(
    function($val) use ($length_expr)
    { 
        $x = strlen($val);
        return eval("return $x $length_expr;");
    }
);

I have written a cool little PHP library but it makes use of closures which cause a PARSE ERROR (not a runtime error!) when I run the app on my webhost (1and1). What I would love is something like a c++ preprocessor directive or an CSS version-specific comment that basically ignores a segment of code for PHP < 5.3

$this->register_validator(
    function($val) use ($length_expr)
    { 
        $x = strlen($val);
        return eval("return $x $length_expr;");
    }
);

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

追风人 2024-12-22 20:27:09

我认为存在语法错误,这导致 eval() 代码中出现解析错误。

我也在 PHP 5.2.17 和 5.3.6 中尝试过:

你不能立即返回两个值,如下所示:

return $x $legth_expr;

这在上述两个版本中抛出解析错误。

你到底想达到什么目标?

I think there is a syntax error, which causes the parse error in the eval()'d code.

I tried it in PHP 5.2.17 and 5.3.6 too:

You can not return two values inmediately, like this:

return $x $legth_expr;

This is throwing a parse error in the mentioned two versions.

What do you want to achieve exactly?

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文