私は次のコードを持っています:
$doc=new DOMDocument();
$doc->loadHTML($content);
$xml=simplexml_import_dom($doc); // just to make xpath more simple
//$images=$xml->xpath('(//img[@class = "thumbimage"])[1]');
for($x=1;$x<=5;$x++)
{
$images[] = $xml->xpath('(//img[@class = "thumbimage"])['.$x.']');
}
$images をダンプします。このタイプの配列を取得します。下部のスクリーン ショットを参照してください。
[array](unknown name)
- [array]0
-[SimpleXMLElement Object] 0
-Properties
-[array]@attributes
[string]src = "thestring"
-Methods
__construct
__addAttribute etc
$images[] 配列のそれぞれから「文字列」を取得したい
添付の画像をご覧ください: