如何获取角色节点

时间:2015-05-19 00:20:34

标签: php xml simplexml

如何获得“Blog-Autor”-Role和“Kommentar-Manager”-Role的角色节点?

或者有没有办法用角色节点更动态地做到这一点?

我的XML:

<roles>
    <role role="Administrator">
        <role role="Account Manager">
            <role role="Blog-Autor"/>
            <role role="Kommentar-Manager"/>
        </role>
    </role>
</roles>

我的php代码,我从上面浏览XML: (在output_roles-function中,$ roles变量只是第一个孩子,但我需要两个孩子)( - &gt; children()没有帮助)

public function User_Roles() {
        $User_Type = $_SESSION["User_Type"];
        $xml_path = "./blog_config/blog_roles.xml";
        $xml_file = simplexml_load_file($xml_path);
        foreach ($xml_file->role as $role) {
            $role_attributes = $role->attributes();
            $user_role = (string) $role_attributes->role;
            if ($user_role == $User_Type) {
                $this->output_roles($role);
            }
        }
    }

private function output_roles($role) {
    foreach ($role as $current_role) {
        $role_ = $current_role->attributes();
        $role_type = (string) $role_->role;
        echo "<tr>";
        echo "<td><b>" . $role_type . "</b></td>";
        echo "</tr>";
        $roles = $role->role;
        $x = is_array($roles);
        if (is_array($current_role->role)) {
            $this->output_roles($current_role->role);
        }
    }
}

2 个答案:

答案 0 :(得分:1)

只需使用XPath表达式,例如

$matches = $xml_file->xpath('//role[@role="Blog-Autor"]');

当然,您可以更加具体地了解路径,例如

$matches = $xml_file->xpath('/role[@role="Administrator"]/role[@role="Account Manager"]/role[@role="Blog-Autor"]');

但这应该让你去。

请参阅SimpleXMLElement::xpath

答案 1 :(得分:1)

如果您打算让所有内部角色都具有祖先角色,您可以使用xpath来完成。例如:

$User_Type = "Administrator";
$roles = $xml_file->xpath("//role[@role='$User_Type']//role[not(role)]");

在xpath之上返回<role>下没有子元素<role role="Administrator">的所有<role>,换句话说,返回最里面的<role>元素。