[LesJoiesDuCode] Fix markup detection
This commit is contained in:
parent
372ddf2792
commit
497d3fd7aa
1 changed files with 4 additions and 5 deletions
|
@ -12,17 +12,16 @@ class LesJoiesDuCodeBridge extends BridgeAbstract{
|
||||||
public function collectData(array $param){
|
public function collectData(array $param){
|
||||||
$html = file_get_html('http://lesjoiesducode.fr/') or $this->returnError('Could not request LesJoiesDuCode.', 404);
|
$html = file_get_html('http://lesjoiesducode.fr/') or $this->returnError('Could not request LesJoiesDuCode.', 404);
|
||||||
|
|
||||||
foreach($html->find('div.post') as $element) {
|
foreach($html->find('div.blog-post') as $element) {
|
||||||
$item = new Item();
|
$item = new Item();
|
||||||
$temp = $element->find('h3 a', 0);
|
$temp = $element->find('h1 a', 0);
|
||||||
|
|
||||||
$titre = $temp->innertext;
|
$titre = $temp->innertext;
|
||||||
$url = $temp->href;
|
$url = $temp->href;
|
||||||
|
|
||||||
$temp = $element->find('div.bodytype', 0);
|
$temp = $element->find('div.blog-post-content', 0);
|
||||||
|
|
||||||
// retrieve .gif instead of static .jpg
|
// retrieve .gif instead of static .jpg
|
||||||
$images = $temp->find('p.e img');
|
$images = $temp->find('p img');
|
||||||
foreach($images as $image){
|
foreach($images as $image){
|
||||||
$img_src = str_replace(".jpg",".gif",$image->src);
|
$img_src = str_replace(".jpg",".gif",$image->src);
|
||||||
$image->src = $img_src;
|
$image->src = $img_src;
|
||||||
|
|
Loading…
Reference in a new issue