我循环遍历包含带属性字符串的数组。
所以我试过这个来使用这段代码。
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;
}
但是当我循环这两次时,我从整个循环中得不到任何东西。