如何使用变量访问动态属性?

发布于 2024-12-15 18:57:16 字数 378 浏览 1 评论 0原文

请参阅:

$class_members = get_class_vars(__CLASS__);

foreach($class_members as $key => $value)
{
    if (strpos($key, '_output') === 0)
    {
        // I want to eval() this
        $code = '$this->' . $key . ' = 0;';
    }
}

假设我要将值 0 分配给以 _output 开头的所有类成员。我计划使用eval好主意还是坏主意?

See:

$class_members = get_class_vars(__CLASS__);

foreach($class_members as $key => $value)
{
    if (strpos($key, '_output') === 0)
    {
        // I want to eval() this
        $code = '$this->' . $key . ' = 0;';
    }
}

Assume I want to assign the value 0 to all class members that begin with _output. I plan to use eval. Good or bad idea?

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

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

发布评论

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

评论(2

时间海 2024-12-22 18:57:16

为此,您不需要 eval()。您可以使用变量,如 $this->{$key} 所示:

foreach($class_members as $key => $value)
{
    if (strpos($key, '_output') === 0)
    {
        // Look mom, no eval()!
       $this->{$key} = 0;
    }
}

You don't need eval() for this. You can use a variable as in $this->{$key}:

foreach($class_members as $key => $value)
{
    if (strpos($key, '_output') === 0)
    {
        // Look mom, no eval()!
       $this->{$key} = 0;
    }
}
薄荷梦 2024-12-22 18:57:16

您可以这样做:

$this->{$key} = 0;

只有少数情况下,eval 不被视为邪恶

这不是其中之一:)

You can just do:

$this->{$key} = 0;

There are only a few situations where eval isn't considered evil.

And this isn't one of them :)

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