3
1
Back

"//div[@class='img-comic-container']//img", $article); } // SatW elseif (strpos($article["link"], "poorlydrawnlines.com/comic/") !== FALSE ) { // Doghouse Diaries, which has broken alt tags textified. } //Sites that provide images and just need alt tags elseif (strpos($article['link'], 'cad-comic.com/comic/') !== FALSE) { // Timothy Winchester (People I Know foreach ($imgs as $img) { if (!$alt_text || $alt_text == $article['title'] || strpos($article['title'], $title_text) !== false){ // there's both alt and title texts, they're both different, use both. $alt_element = $doc->createElement("i", $alt_text); $title_element = $doc->createElement("i", $alt_text); } elseif (strpos($alt_text, $title_text) !== false){ $text_element = $doc->createElement("i", $alt_text); $title_element .

New Pull Request