
Code : Tout sélectionner
<div class="prog"><h2><img src="http://images.programme-tv.net/img/chainesmall/19.gif" alt="Programme de ce jour : TF1"></h2><ul><li><a href="http://www.programme-tv.net/2006-08-17/1/5/340539/hertzien/commissaire-moulin--police-judiciaire.html" onclick="window.open(this.href);return false;">20:50 : Commissaire Moulin, police judiciaire <span class="normal"> (1h45mn) Téléfilm policier</span></a></li><li><a href="http://www.programme-tv.net/2006-08-17/1/5/340540/hertzien/pas-de-vacances-pour-cauet.html" onclick="window.open(this.href);return false;">22:35 : Pas de vacances pour Cauet... <span class="normal"> (1h30mn) Divertissement</span></a></li></ul></div>
ob_start();
echo file_get_contents("http://www.yahoo.fr"); // par exemple
$display_episode = ob_get_contents();
ob_end_clean();
$domDoc = new DomDocument('1.0');
$domDoc->loadHTML($display_episode);
$domDoc->getElementById("mastheadbd");
echo $domDoc->saveHTML();
J'ai le droit à l'erreur suivante :
<?php
$contenu=file_get_contents("http://www.programme-tv.net/programme-tv-de-ce-soir.html");
preg_match_all("` alt=\"Programme de ce jour : (.*)\"></h2><ul><li><a href=\"(.*)\" onclick=\"window.open\(this.href\);return false;\">(.*)<span class=\"normal\"> \((.*)\) (.*)</span></a></li>`Ui", $contenu, $extract, PREG_PATTERN_ORDER);
print "<pre>";
print_r($extract);
print "</pre>";
?>
$extract[0] contient l'extrait complet qui correspond à l'ensemble du masque (inutile dans notre cas)Code : Tout sélectionner
[1] => Array
(
[0] => TF1
[1] => France 2
[2] => France 3
[3] => Canal+
[4] => France 5
[5] => Arte
[6] => M6
)
[2] => Array
(
[0] => http://www.programme-tv.net/2006-08-21/1/5/343868/hertzien/femmes-de-loi.html
[1] => http://www.programme-tv.net/2006-08-21/1/5/343383/hertzien/jeux-d-enfants.html
[2] => http://www.programme-tv.net/2006-08-21/1/5/343423/hertzien/consomag.html
[3] => http://www.programme-tv.net/2006-08-21/1/5/343202/hertzien/best-of-la-boite-a-questions.html
[4] => http://www.programme-tv.net/2006-08-21/1/5/343472/hertzien/cia--guerres-secretes.html
[5] => http://www.programme-tv.net/2006-08-21/1/5/343162/hertzien/le-journal-de-la-culture.html
[6] => http://www.programme-tv.net/2006-08-21/1/5/343683/hertzien/kaamelott.html
)
[3] => Array
(
[0] => 20:50 : Femmes de loi
[1] => 20:50 : Jeux d'enfants
[2] => 20:18 : Consomag
[3] => 20:05 : Best of «La Boîte à questions»
[4] => 20:40 : CIA : guerres secrètes
[5] => 20:00 : Le journal de la culture
[6] => 20:40 : Kaamelott
)
[4] => Array
(
[0] => 1h45mn
[1] => 1h35mn
[2] => 2 mn
[3] => 5 mn
[4] => 55 mn
[5] => 10 mn
[6] => 10 mn
)
[5] => Array
(
[0] => Téléfilm policier
[1] => Comédie sentimentale
[2] => Magazine du consommateur
[3] => Magazine de société
[4] => Société
[5] => Magazine culturel
[6] => Série humoristique
)