PHP - 使用变量作为运算符

发布于 2024-11-14 13:20:08 字数 355 浏览 2 评论 0原文

我试图得到这个:

if($a[2] > $b[2] && $c[2] < 3) echo "bingo";

但是因为条件是从数据库检索的,所以我需要将整个条件放入变量中,然后以某种方式找到一种方法将变量更改回条件。我认为这会是这样的:

$condition = "$a[2] > $b[2] && $c[2] < 3";
$evaledCondition = eval("$condition;");
if($evaledCondition) echo "bingo";

显然它不起作用。我错过了什么吗?

I am trying to get this:

if($a[2] > $b[2] && $c[2] < 3) echo "bingo";

But because the condition is retrieved from database, I need to get the whole condition into a variable and then somehow find a way to change the variable back into a condition. I thought it will be something along this line:

$condition = "$a[2] > $b[2] && $c[2] < 3";
$evaledCondition = eval("$condition;");
if($evaledCondition) echo "bingo";

Apparently it didn't work. Am I missing something?

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

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

发布评论

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

评论(1

云之铃。 2024-11-21 13:20:08

eval() 返回 NULL,除非返回值是
在评估的代码中调用

   $evaledCondition = eval("return $condition;");

eval() returns NULL unless return is
called in the evaluated code

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