DOMDocument オブジェクトを介してクラスを持たない画像を選択しようとしています。
私は次のものを持っています
$imgParser=new DOMDocument;
@$imgParser->loadHTML($html);
foreach($imgParser->getElementsByTagName('img') as $imgNode){
//the code below will display images with and without class name
echo $imgParser->saveHTML($imgNode);
//I can't user javascript at this point...
//I need to save the images without class into my DB...
//save to DB codes..
}
とにかくこれを行うことはありますか?どうもありがとう!