find('.preview-card') as $li) { $a = $li->find('a', 0); $title = $a->find('.title', 0); $url = $baseurl . $a->href; //get article $domarticle = getSimpleHTMLDOM($url); $content = $domarticle->find('div.content', 0); //get header-image and set absolute src $headerimage = $domarticle->find('div.article-header-image', 0); $headerimageimg = $headerimage->find('img[src]', 0); $src = $headerimageimg->src; $headerimageimg->src = $baseurl . $src; $headerimageimg->srcset = $baseurl . $src; //set absolute src for all img foreach ($content->find('img[src]') as $img) { $src = $img->src; $img->src = $baseurl . $src; $img->srcset = $baseurl . $src; } //get author $author = $domarticle->find('div.author-name', 0); $this->items[] = [ 'title' => $title->plaintext, 'uri' => $url, 'content' => $headerimage . '
' . $content, 'author' => $author->plaintext ]; } } }