实现从 PHP 5.3 到 5.2 向后兼容的方法(预处理器指令?)
我编写了一个很酷的小型 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我认为存在语法错误,这导致 eval() 代码中出现解析错误。
我也在 PHP 5.2.17 和 5.3.6 中尝试过:
你不能立即返回两个值,如下所示:
这在上述两个版本中抛出解析错误。
你到底想达到什么目标?
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:
This is throwing a parse error in the mentioned two versions.
What do you want to achieve exactly?