使用属性循环遍历字符串并转换为数组

时间:2015-09-04 10:53:38

标签: php arrays

我循环遍历包含带属性字符串的数组。

所以我试过这个来使用这段代码。

public static function parse_attributes($attributes) {
        $xml = <<<HTML
        <div $attributes></div>
HTML;

        $element_array = simplexml_load_string($xml);
        $attrs = json_decode(json_encode($element_array->attributes()), true)['@attributes'];   
        return $attrs;
    }

但是当我循环这两次时,我从整个循环中得不到任何东西。

0 个答案:

没有答案