如何从 <ri:attachment ri:filename="stories-img-05.png" /> 中提取图像路径

How Can I extract the image path from <ri:attachment ri:filename="stories-img-05.png" />

这是我使用 Simple HTML Dom:

提取数据的原始代码
<div class="content-wrapper"><p><ac:image ac:height="250"><ri:attachment ri:filename="stories-img-05.png" /></ac:image></p></div>

这是我正在使用的代码:

$html->find('div[class=content-wrapper] p ac:image ', 0)->innertext;

如何获取图片路径?

多次使用此代码:

    $img=array();
    foreach($html->find('div.content-wrapper ri:attachment[ri:filename]') as $article) {
        array_push($img, $article->attr['ri:filename']);
    }
    print_r($img);

一次性使用:

$html->find('div.content-wrapper ri:attachment[ri:filename]')[0]->attr['ri:filename']