0

我是一家公司的新实习生,当我看到这个符号时,我正在查看某人的代码:

if($o_eventNode->{$calOption}[0]['value'] == 1)

我不明白带大括号的部分。有没有其他的打字方式?该语法的优点是什么?

4

2 回答 2

5

使用该语法,您可以在不知道它们各自名称的情况下动态调用类的方法和变量(另请参阅文档中的变量变量名称)。

/edit:用更复杂的示例更新了答案,我希望这更容易理解。修复了原始代码,这个应该确实可以工作。


例子:

<?php
    class Router {
        // respond
        //
        // just a simple method that checks wether
        // we got a method for $route and if so calls
        // it while forwarding $options to it
        public function respond ($route, $options) {
            // check if a method exists for this route
            if (method_exists($this, 'route_'.$route) {
                // call the method, without knowing which
                // route is currently requested
                print $this->{'route_'.$route}($options);
            } else {
                print '404, page not found :(';
            }
        }

        // route_index
        //
        // a demo method for the "index" route
        // expecting an array of options.
        // options['name'] is required
        public function route_index ($options) {
            return 'Welcome home, '.$options['name'].'!';
        }
    }
    // now create and call the router
    $router = new Router();
    $router->respond('foo'); 
    // -> 404, because $router->route_foo() does not exist
    $router->respond('index', array('name'=>'Klaus'));
    // -> 'Welcome home Klaus!'
?>
于 2012-08-27T08:39:21.420 回答
1

变量的内容$calOption将用作来自 的类成员的名称$o_eventNode。大括号在那里,以清楚地标记变量的结尾,因此很明显不是$calOption[0]['value']意味着。

请参阅:http ://php.net/language.variables.variable.php以了解在将变量变量与数组一起使用时这种歧义问题的解释。

于 2012-08-27T08:40:28.613 回答