Détecter en PHP les commentaires "<!-- -->" dans un DOMDocument.

WRInaute accro
Bonjour

Actuellement, en PHP j'arrive avec DOMDocument à lire du html et générer du json.

Y compris le Javascript.

Comment accéder ( avec DOMDocument et/ou XPath ), aux noeuds de type : XML_COMMENT_NODE ?

C'est-à-dire faire figurer les commentaires du html dans le json ?

Les commentaires sont tels quels :

HTML:
    <!--[if lt IE 9]>  commentaire <![endif]-->

    
   <!-- Matomo -->

    <!-- End Matomo Code -->


Merci beaucoup de votre aide.
 
S
suppr334822
Guest
<?php
// Charger le contenu HTML dans un objet DOMDocument
$html = <<<HTML
<!DOCTYPE html>
<html>
<head>
<title>Exemple</title>
</head>
<body>
<!-- Commentaire 1 -->
<p>Paragraphe 1</p>
<!-- Commentaire 2 -->
<p>Paragraphe 2</p>
</body>
</html>
HTML;

$dom = new DOMDocument();
$dom->loadHTML($html);

// Récupérer tous les noeuds de type commentaire
$commentNodes = $dom->getElementsByTagName('comment');

// Itérer sur les noeuds et récupérer le contenu de chaque commentaire
$comments = [];
foreach ($commentNodes as $comment) {
$comments[] = $comment->nodeValue;
}

// Afficher le résultat en JSON
echo json_encode(['comments' => $comments]);
 
S
suppr334822
Guest
Ce qui génère le code suivant

{
"comments": [
" Commentaire 1 ",
" Commentaire 2 "
]
}
 
S
suppr334822
Guest
les commentaires incluent également les caractères de début et de fin (<!-- et -->). Si vous souhaitez exclure ces caractères, vous pouvez utiliser la fonction substr() pour enlever les 4 premiers et les 3 derniers caractères de chaque commentaire :

// Itérer sur les noeuds et récupérer le contenu de chaque commentaire
$comments = [];
foreach ($commentNodes as $comment) {
$comments[] = substr($comment->nodeValue, 4, -3);
}

Ce qui génère :

{
"comments": [
" Commentaire 1 ",
" Commentaire 2 "
]
}
 
WRInaute accro
Excellent.

Super c'est ce que je cherchais.

Le problème désormais consiste à intégrer au bon endroit les commentaires à l'arbre json.

Pour l'instant je crée l'arbre DOMDocument avec loadHTML($html).

Puis l'arbre json avec une fonction récursive ad hoc.

Je n'ai plus qu'à indexer les commentaires.

Je vais voir si je peux quand même détecter/indexer les noeuds de type XML_COMMENT_NODE dans l'arbre DOMDocument.

Merci beaucoup de ton aide.
 
S
suppr334822
Guest
<?php
// Charger le contenu HTML dans un objet DOMDocument
$html = <<<HTML
<!DOCTYPE html>
<html>
<head>
<title>Exemple</title>
</head>
<body>
<!-- Commentaire 1 -->
<p>Paragraphe 1</p>
<!-- Commentaire 2 -->
<p>Paragraphe 2</p>
</body>
</html>
HTML;

$dom = new DOMDocument();
$dom->loadHTML($html);

// Générer l'arbre JSON en utilisant une fonction récursive
$json = generateJson($dom->documentElement);

// Afficher le résultat en JSON
echo json_encode($json);

/**
* Génère un arbre JSON à partir d'un élément DOM.
*/
function generateJson(DOMElement $element) {
// Récupérer les noeuds enfants de l'élément
$childNodes = $element->childNodes;

// Parcourir les noeuds enfants et générer les sous-arbres JSON correspondants
$children = [];
foreach ($childNodes as $childNode) {
// Gérer les commentaires
if ($childNode->nodeType === XML_COMMENT_NODE) {
$comment = [
'type' => 'comment',
'value' => $childNode->nodeValue,
'path' => $childNode->getNodePath()
];
$children[] = $comment;
}
// Gérer les éléments
elseif ($childNode->nodeType === XML_ELEMENT_NODE) {
$child = [
'type' => 'element',
'tag' => $childNode->nodeName,
'attributes' => [],
'children' => generateJson($childNode),
'path' => $childNode->getNodePath()
];
// Récupérer les attributs de l'élément
foreach ($childNode->attributes as $attribute) {
$child['attributes'][$attribute->nodeName] = $attribute->nodeValue;
}
$children[] = $child;
}
// Gérer les noeuds texte
elseif ($childNode->nodeType === XML_TEXT_NODE) {
$text = [
'type' => 'text',
'value' => $childNode->nodeValue,
'path' => $childNode->getNodePath()
];
$children[] = $text;
}
}

// Retourner le sous-arbre JSON correspondant à l'élément
return [
'type' => 'element',
'tag' => $element->nodeName,
'attributes' => [],
'children' => $children,
'path' => $element->getNodePath()
];
}

Ce qui génère :

{
"type": "element",
"tag": "html",
"attributes": {},
"children": [
{
"type": "element",
"tag": "head",
"attributes": {},
"children": [
{
"type": "element",
"tag": "title",
"attributes": {},
"children": [
{
"type": "text",
"value": "Exemple",
"path
 
WRInaute accro
Voilà voilà

J'ai fait un programme php utilisant la constante XML_COMMENT_NODE, mais il ne la détecte pas.

Les commentaires n'y figurent pas.

Sur le net, ils disent que les comments ne sont pas des nodes.

A quoi sert XML_COMMENT_NODE ?

Voici ce que celà donne.

Excusez-moi pour le code long.

Et le json n'est pas valide ( ligne 41 début du script ).

Merci beaucoup pour votre aide.


JSON:
{
    "tag": "html",
    "lang": "fr",
    "children": [
        {
            "tag": "head",
            "children": [
                {
                    "tag": "meta",
                    "http-equiv": "Content-Type",
                    "content": "text/html; charset=utf-8"
                },
                {
                    "tag": "link",
                    "rel": "stylesheet",
                    "type": "text/css",
                    "href": "/style_20230205_01.css"
                },
                {
                    "tag": "meta",
                    "name": "viewport",
                    "content": "width=device-width, initial-scale=1.0"
                },
                {
                    "tag": "meta",
                    "http-equiv": "X-UA-Compatible",
                    "content": "IE=edge"
                },
                {
                    "tag": "script",
                    "nonce": "Ra7jDHKhByUVZrjQqIxGvoI2YCLAHNg9",
                    "src": "http://github.com/aFarkas/html5shiv/blob/master/dist/html5shiv.js",
                    "defer": "defer"
                },
                {
                    "tag": "script",
                    "nonce": "Ra7jDHKhByUVZrjQqIxGvoI2YCLAHNg9",
                    "children": [
                        {
                            "tag": "script",
 => erreur           "text": "var _paq = window._paq = window._paq || []; /* tracker methods like \"setCustomDimension\" should be called before \"trackPageView\" */ _paq.push(['trackPageView']); _paq.push(['enableLinkTracking']); (function() {     var u=\"https://analytics.pronostics-courses.fr/\";     _paq.push(['setTrackerUrl', u+'matomo.php']);     _paq.push(['setSiteId', '1']);     _paq.push(['HeatmapSessionRecording::disable']);     var d=document, g=d.createElement('script'), s=d.getElementsByTagName('script')[0];     g.async=true; g.src=u+'matomo.js'; s.parentNode.insertBefore(g,s); })();"
                        }
                    ]
                },
                {
                    "tag": "link",
                    "rel": "canonical",
                    "href": "https://www.pronostics-courses.fr/"
                },
                {
                    "tag": "title",
                    "children": [
                        {
                            "tag": "text",
                            "text": "Statistiques et Pronostics Courses de Chevaux"
                        }
                    ]
                },
                {
                    "tag": "meta",
                    "name": "keywords",
                    "content": "cheval, chevaux, pronostics, courses de chevaux, pronostic, pronostics courses, pronostics courses de chevaux, estimations prévisionnelles, base de données courses"
                },
                {
                    "tag": "meta",
                    "name": "description",
                    "content": "Statistiques, Pronostics et Historiques Graphiques sur les Courses de Chevaux"
                },
                {
                    "tag": "meta",
                    "name": "author",
                    "content": "Jean-Francois Ortolo"
                }
            ]
        },
        {
            "tag": "body",
            "itemscope": "",
            "itemtype": "http://schema.org/WebPage",
            "children": [
                {
                    "tag": "meta",
                    "itemprop": "description",
                    "content": "Statistiques, Pronostics et Historiques Graphiques sur les Courses de Chevaux"
                },
                {
                    "tag": "a",
                    "class": "cache",
                    "itemprop": "url",
                    "href": "https://www.pronostics-courses.fr",
                    "aria-label": "Statistiques et Pronostics sur les Courses de Chevaux"
                },
                {
                    "tag": "a",
                    "class": "cache",
                    "itemprop": "breadcrumb",
                    "href": "https://www.pronostics-courses.fr",
                    "aria-label": "Statistiques et Pronostics sur les Courses de Chevaux"
                },
                {
                    "tag": "span",
                    "itemscope": "",
                    "itemtype": "http://schema.org/Language",
                    "children": [
                        {
                            "tag": "meta",
                            "itemprop": "name",
                            "content": "French"
                        }
                    ]
                },
                {
                    "tag": "div",
                    "itemscope": "",
                    "itemtype": "http://schema.org/AboutPage",
                    "children": [
                        {
                            "tag": "div",
                            "itemprop": "author",
                            "itemscope": "",
                            "itemtype": "http://schema.org/Person",
                            "children": [
                                {
                                    "tag": "meta",
                                    "itemprop": "name",
                                    "content": "Jean-Francois Ortolo"
                                },
                                {
                                    "tag": "meta",
                                    "itemprop": "birthDate",
                                    "content": "1957-12-18"
                                },
                                {
                                    "tag": "meta",
                                    "itemprop": "nationality",
                                    "content": "French"
                                },
                                {
                                    "tag": "meta",
                                    "itemprop": "homeLocation",
                                    "content": "Paris"
                                }
                            ]
                        }
                    ]
                },
                {
                    "tag": "meta",
                    "property": "og:title",
                    "content": "Statistiques, Pronostics et Historiques Graphiques sur les Courses de Chevaux"
                },
                {
                    "tag": "meta",
                    "property": "og:type",
                    "content": "Pronostics, Pronostics et Historiques Graphiques sur les Courses de Chevaux"
                },
                {
                    "tag": "meta",
                    "property": "og:url",
                    "content": "https://www.pronostics-courses.fr/"
                },
                {
                    "tag": "p",
                    "aria-hidden": "true"
                },
                {
                    "tag": "header",
                    "class": "nav_index",
                    "children": [
                        {
                            "tag": "div",
                            "class": "logo",
                            "children": [
                                {
                                    "tag": "text",
                                    "text": "Statistiques Courses de Chevaux"
                                }
                            ]
                        }
                    ]
                },
                {
                    "tag": "br"
                },
                {
                    "tag": "div",
                    "class": "blochaut",
                    "children": [
                        {
                            "tag": "div",
                            "class": "bloc blocgauche",
                            "children": [
                                {
                                    "tag": "br"
                                },
                                {
                                    "tag": "article",
                                    "class": "nav_index",
                                    "children": [
                                        {
                                            "tag": "header",
                                            "class": "nav_index",
                                            "children": [
                                                {
                                                    "tag": "h1",
                                                    "children": [
                                                        {
                                                            "tag": "text",
                                                            "text": "Choisissez vos courses..."
                                                        }
                                                    ]
                                                }
                                            ]
                                        },
                                        {
                                            "tag": "br"
                                        },
                                        {
                                            "tag": "aside",
                                            "class": "nav_index",
                                            "children": [
                                                {
                                                    "tag": "ul",
                                                    "id": "menu",
                                                    "itemscope": "",
                                                    "itemtype": "http://schema.org/ItemList",
                                                    "children": [
                                                        {
                                                            "tag": "li",
                                                            "itemprop": "itemListElement",
                                                            "itemscope": "",
                                                            "itemtype": "http://schema.org/ListItem",
                                                            "children": [
                                                                {
                                                                    "tag": "meta",
                                                                    "itemprop": "position",
                                                                    "content": "1"
                                                                },
                                                                {
                                                                    "tag": "h2",
                                                                    "itemprop": "item",
                                                                    "itemscope": "",
                                                                    "itemtype": "http://schema.org/SiteNavigationElement",
                                                                    "children": [
                                                                        {
                                                                            "tag": "a",
                                                                            "class": "bouton bouton_gauche coul_boutons",
                                                                            "title": "Pronostics Courses Lundi 27 Mars 2023",
                                                                            "itemprop": "url",
                                                                            "href": "https://www.pronostics-courses.fr/php/courses-lendemain/new-courses.php",
                                                                            "children": [
                                                                                {
                                                                                    "tag": "span",
                                                                                    "itemprop": "description",
                                                                                    "children": [
                                                                                        {
                                                                                            "tag": "text",
                                                                                            "text": "Pronostics Courses"
                                                                                        },
                                                                                        {
                                                                                            "tag": "br"
                                                                                        },
                                                                                        {
                                                                                            "tag": "text",
                                                                                            "text": " Lundi 27 Mars 2023"
                                                                                        }
                                                                                    ]
                                                                                }
                                                                            ]
                                                                        }
                                                                    ]
                                                                }
                                                            ]
                                                        },
                                                        {
                                                            "tag": "li",
                                                            "itemprop": "itemListElement",
                                                            "itemscope": "",
                                                            "itemtype": "http://schema.org/ListItem",
                                                            "children": [
                                                                {
                                                                    "tag": "meta",
                                                                    "itemprop": "position",
                                                                    "content": "2"
                                                                },
                                                                {
                                                                    "tag": "h2",
                                                                    "itemprop": "item",
                                                                    "itemscope": "",
                                                                    "itemtype": "http://schema.org/SiteNavigationElement",
                                                                    "children": [
                                                                        {
                                                                            "tag": "a",
                                                                            "class": "bouton bouton_gauche coul_boutons",
                                                                            "title": "Pronostics Courses Dimanche 26 Mars 2023",
                                                                            "itemprop": "url",
                                                                            "href": "https://www.pronostics-courses.fr/php/courses-aujourdhui/new-courses.php",
                                                                            "children": [
                                                                                {
                                                                                    "tag": "span",
                                                                                    "itemprop": "description",
                                                                                    "children": [
                                                                                        {
                                                                                            "tag": "text",
                                                                                            "text": "Pronostics Courses"
                                                                                        },
                                                                                        {
                                                                                            "tag": "br"
                                                                                        },
                                                                                        {
                                                                                            "tag": "text",
                                                                                            "text": " Dimanche 26 Mars 2023"
                                                                                        }
                                                                                    ]
                                                                                }
                                                                            ]
                                                                        }
                                                                    ]
                                                                }
                                                            ]
                                                        },
                                                        {
                                                            "tag": "li",
                                                            "itemprop": "itemListElement",
                                                            "itemscope": "",
                                                            "itemtype": "http://schema.org/ListItem",
                                                            "children": [
                                                                {
                                                                    "tag": "meta",
                                                                    "itemprop": "position",
                                                                    "content": "3"
                                                                },
                                                                {
                                                                    "tag": "h2",
                                                                    "itemprop": "item",
                                                                    "itemscope": "",
                                                                    "itemtype": "http://schema.org/SiteNavigationElement",
                                                                    "children": [
                                                                        {
                                                                            "tag": "a",
                                                                            "class": "bouton bouton_gauche coul_boutons",
                                                                            "title": "Pronostics Courses dix derniers jours",
                                                                            "itemprop": "url",
                                                                            "href": "https://www.pronostics-courses.fr/php/courses-anciennes/old-courses.php",
                                                                            "children": [
                                                                                {
                                                                                    "tag": "span",
                                                                                    "itemprop": "description",
                                                                                    "children": [
                                                                                        {
                                                                                            "tag": "text",
                                                                                            "text": "Pronostics Courses"
                                                                                        },
                                                                                        {
                                                                                            "tag": "br"
                                                                                        },
                                                                                        {
                                                                                            "tag": "text",
                                                                                            "text": "dix derniers jours"
                                                                                        }
                                                                                    ]
                                                                                }
                                                                            ]
                                                                        }
                                                                    ]
                                                                }
                                                            ]
                                                        }
                                                    ]
                                                }
                                            ]
                                        }
                                    ]
                                },
                                {
                                    "tag": "br"
                                },
                                {
                                    "tag": "div",
                                    "class": "tableau_liste_accueil",
                                    "itemscope": "",
                                    "itemtype": "http://schema.org/Table",
                                    "title": "Courses du Dimanche 26 Mars 2023",
                                    "children": [
                                        {
                                            "tag": "meta",
                                            "itemprop": "name",
                                            "content": "navigation_menu"
                                        },
                                        {
                                            "tag": "span",
                                            "class": "coul_listecourses",
                                            "itemprop": "description",
                                            "children": [
                                                {
                                                    "tag": "text",
                                                    "text": "Courses du  Dimanche 26 Mars 2023"
                                                }
                                            ]
                                        },
                                        {
                                            "tag": "article",
                                            "class": "liste",
                                            "children": [
                                                {
                                                    "tag": "header",
                                                    "class": "liste coul_reunions",
                                                    "children": [
                                                        {
                                                            "tag": "nav",
                                                            "class": "num_reunion",
                                                            "itemprop": "description",
                                                            "children": [
                                                                {
                                                                    "tag": "text",
                                                                    "text": "R5"
                                                                }
                                                            ]
                                                        },
                                                        {
                                                            "tag": "h2",
                                                            "class": "nom_reunion",
                                                            "itemprop": "name",
                                                            "children": [
                                                                {
                                                                    "tag": "text",
                                                                    "text": "LA TESTE-DE-BUCH"
                                                                }
                                                            ]
                                                        }
                                                    ]
                                                },
                                                {
                                                    "tag": "a",
                                                    "class": "liste",
                                                    "href": "https://www.pronostics-courses.fr/php/courses-aujourdhui/pronostics-courses-5-5.html",
                                                    "itemprop": "url",
                                                    "title": "Prix de la Société des Courses de Tarbes",
                                                    "children": [
                                                        {
                                                            "tag": "aside",
                                                            "class": "liste one",
                                                            "children": [
                                                                {
                                                                    "tag": "nav",
                                                                    "class": "num_course",
                                                                    "children": [
                                                                        {
                                                                            "tag": "meta",
                                                                            "itemprop": "name",
                                                                            "content": "Prix de la Société des Courses de Tarbes"
                                                                        },
                                                                        {
                                                                            "tag": "span",
                                                                            "itemprop": "description",
                                                                            "children": [
                                                                                {
                                                                                    "tag": "text",
                                                                                    "text": "C5 "
                                                                                }
                                                                            ]
                                                                        }
                                                                    ]
                                                                },
                                                                {
                                                                    "tag": "nav",
                                                                    "class": "nom_course",
                                                                    "children": [
                                                                        {
                                                                            "tag": "span",
                                                                            "class": "nom_course",
                                                                            "itemprop": "name",
                                                                            "children": [
                                                                                {
                                                                                    "tag": "text",
                                                                                    "text": "Prix de la Société des Courses de Tarbes"
                                                                                }
                                                                            ]
                                                                        }
                                                                    ]
                                                                },
                                                                {
                                                                    "tag": "div",
                                                                    "class": "pari",
                                                                    "itemprop": "about",
                                                                    "children": [
                                                                        {
                                                                            "tag": "div",
                                                                            "class": "parallelogramme logo_simple paris_none",
                                                                            "role": "img",
                                                                            "aria-label": "Simple",
                                                                            "title": "Simple"
                                                                        },
                                                                        {
                                                                            "tag": "div",
                                                                            "class": "parallelogramme logo_2sur4 paris_none",
                                                                            "role": "img",
                                                                            "aria-label": "2sur4",
                                                                            "title": "2sur4"
                                                                        },
                                                                        {
                                                                            "tag": "div",
                                                                            "class": "parallelogramme logo_couple paris_none",
                                                                            "role": "img",
                                                                            "aria-label": "Couplé",
                                                                            "title": "Couplé"
                                                                        },
                                                                        {
                                                                            "tag": "div",
                                                                            "class": "parallelogramme logo_couple_ordre paris_none",
                                                                            "role": "img",
                                                                            "aria-label": "Couplé Ordre",
                                                                            "title": "Couplé Ordre"
                                                                        },
                                                                        {
                                                                            "tag": "div",
                                                                            "class": "parallelogramme logo_trio paris_plain",
                                                                            "role": "img",
                                                                            "aria-label": "Trio",
                                                                            "title": "Trio"
                                                                        },
                                                                        {
                                                                            "tag": "div",
                                                                            "class": "parallelogramme logo_multi paris_plain",
                                                                            "role": "img",
                                                                            "aria-label": "Multi",
                                                                            "title": "Multi"
                                                                        },
                                                                        {
                                                                            "tag": "div",
                                                                            "class": "parallelogramme logo_pick5 paris_plain",
                                                                            "role": "img",
                                                                            "aria-label": "Pick5",
                                                                            "title": "Pick5"
                                                                        }
                                                                    ]
                                                                },
                                                                {
                                                                    "tag": "nav",
                                                                    "class": "heure",
                                                                    "children": [
                                                                        {
                                                                            "tag": "b",
                                                                            "children": [
                                                                                {
                                                                                    "tag": "text",
                                                                                    "text": "18h25"
                                                                                }
                                                                            ]
                                                                        }
                                                                    ]
                                                                },
                                                                {
                                                                    "tag": "nav",
                                                                    "class": "partants",
                                                                    "children": [
                                                                        {
                                                                            "tag": "b",
                                                                            "children": [
                                                                                {
                                                                                    "tag": "text",
                                                                                    "text": "14"
                                                                                }
                                                                            ]
                                                                        },
                                                                        {
                                                                            "tag": "br"
                                                                        },
                                                                        {
                                                                            "tag": "text",
                                                                            "text": "partants"
                                                                        }
                                                                    ]
                                                                },
                                                                {
                                                                    "tag": "nav",
                                                                    "class": "liste",
                                                                    "children": [
                                                                        {
                                                                            "tag": "text",
                                                                            "text": "Galop - Handicap - 20 000 € -  1600  m"
                                                                        }
                                                                    ]
                                                                },
                                                                {
                                                                    "tag": "nav",
                                                                    "class": "liste",
                                                                    "children": [
                                                                        {
                                                                            "tag": "text",
                                                                            "text": "Corde à droite - Réf:+25"
                                                                        }
                                                                    ]
                                                                }
                                                            ]
                                                        }
                                                    ]
                                                }
                                            ]
                                        }
                                    ]
                                },
                                {
                                    "tag": "div",
                                    "class": "tableau_liste_accueil",
                                    "itemscope": "",
                                    "itemtype": "http://schema.org/Table",
                                    "children": [
                                        {
                                            "tag": "meta",
                                            "itemprop": "name",
                                            "content": "navigation_menu"
                                        },
                                        {
                                            "tag": "article",
                                            "class": "liste",
                                            "children": [
                                                {
                                                    "tag": "header",
                                                    "class": "liste coul_reunions",
                                                    "children": [
                                                        {
                                                            "tag": "nav",
                                                            "class": "num_reunion",
                                                            "itemprop": "description",
                                                            "children": [
                                                                {
                                                                    "tag": "text",
                                                                    "text": "R9"
                                                                }
                                                            ]
                                                        },
                                                        {
                                                            "tag": "h2",
                                                            "class": "nom_reunion",
                                                            "itemprop": "name",
                                                            "children": [
                                                                {
                                                                    "tag": "text",
                                                                    "text": "CARPENTRAS"
                                                                }
                                                            ]
                                                        }
                                                    ]
                                                },
                                                {
                                                    "tag": "a",
                                                    "class": "liste",
                                                    "href": "https://www.pronostics-courses.fr/php/courses-aujourdhui/pronostics-courses-9-7.html",
                                                    "itemprop": "url",
                                                    "title": "Prix Archytecta",
                                                    "children": [
                                                        {
                                                            "tag": "aside",
                                                            "class": "liste one",
                                                            "children": [
                                                                {
                                                                    "tag": "nav",
                                                                    "class": "num_course",
                                                                    "children": [
                                                                        {
                                                                            "tag": "meta",
                                                                            "itemprop": "name",
                                                                            "content": "Prix Archytecta"
                                                                        },
                                                                        {
                                                                            "tag": "span",
                                                                            "itemprop": "description",
                                                                            "children": [
                                                                                {
                                                                                    "tag": "text",
                                                                                    "text": "C7 "
                                                                                }
                                                                            ]
                                                                        }
                                                                    ]
                                                                },
                                                                {
                                                                    "tag": "nav",
                                                                    "class": "nom_course",
                                                                    "children": [
                                                                        {
                                                                            "tag": "span",
                                                                            "class": "nom_course",
                                                                            "itemprop": "name",
                                                                            "children": [
                                                                                {
                                                                                    "tag": "text",
                                                                                    "text": "Prix Archytecta"
                                                                                }
                                                                            ]
                                                                        }
                                                                    ]
                                                                },
                                                                {
                                                                    "tag": "div",
                                                                    "class": "pari",
                                                                    "itemprop": "about",
                                                                    "children": [
                                                                        {
                                                                            "tag": "div",
                                                                            "class": "parallelogramme logo_simple paris_none",
                                                                            "role": "img",
                                                                            "aria-label": "Simple",
                                                                            "title": "Simple"
                                                                        },
                                                                        {
                                                                            "tag": "div",
                                                                            "class": "parallelogramme logo_couple paris_none",
                                                                            "role": "img",
                                                                            "aria-label": "Couplé",
                                                                            "title": "Couplé"
                                                                        },
                                                                        {
                                                                            "tag": "div",
                                                                            "class": "parallelogramme logo_trio paris_plain",
                                                                            "role": "img",
                                                                            "aria-label": "Trio",
                                                                            "title": "Trio"
                                                                        },
                                                                        {
                                                                            "tag": "div",
                                                                            "class": "parallelogramme logo_multi paris_plain",
                                                                            "role": "img",
                                                                            "aria-label": "Multi",
                                                                            "title": "Multi"
                                                                        },
                                                                        {
                                                                            "tag": "div",
                                                                            "class": "parallelogramme logo_quarte_regional paris_plain",
                                                                            "role": "img",
                                                                            "aria-label": "Quarté Régional",
                                                                            "title": "Quarté Régional"
                                                                        }
                                                                    ]
                                                                },
                                                                {
                                                                    "tag": "nav",
                                                                    "class": "heure",
                                                                    "children": [
                                                                        {
                                                                            "tag": "b",
                                                                            "children": [
                                                                                {
                                                                                    "tag": "text",
                                                                                    "text": "17h30"
                                                                                }
                                                                            ]
                                                                        }
                                                                    ]
                                                                },
                                                                {
                                                                    "tag": "nav",
                                                                    "class": "partants",
                                                                    "children": [
                                                                        {
                                                                            "tag": "b",
                                                                            "children": [
                                                                                {
                                                                                    "tag": "text",
                                                                                    "text": "16"
                                                                                }
                                                                            ]
                                                                        },
                                                                        {
                                                                            "tag": "br"
                                                                        },
                                                                        {
                                                                            "tag": "text",
                                                                            "text": "partants"
                                                                        }
                                                                    ]
                                                                },
                                                                {
                                                                    "tag": "nav",
                                                                    "class": "liste",
                                                                    "children": [
                                                                        {
                                                                            "tag": "text",
                                                                            "text": "Attelé - Course H - trot - 18 500 € -  2650  m"
                                                                        }
                                                                    ]
                                                                },
                                                                {
                                                                    "tag": "nav",
                                                                    "class": "liste",
                                                                    "children": [
                                                                        {
                                                                            "tag": "text",
                                                                            "text": "Corde à droite"
                                                                        }
                                                                    ]
                                                                }
                                                            ]
                                                        }
                                                    ]
                                                }
                                            ]
                                        }
                                    ]
                                },
                                {
                                    "tag": "br"
                                },
                                {
                                    "tag": "div",
                                    "class": "tableau_liste_accueil",
                                    "itemscope": "",
                                    "itemtype": "http://schema.org/Table",
                                    "title": "Courses du Lundi 27 Mars 2023",
                                    "children": [
                                        {
                                            "tag": "meta",
                                            "itemprop": "name",
                                            "content": "navigation_menu"
                                        },
                                        {
                                            "tag": "span",
                                            "class": "coul_listecourses",
                                            "itemprop": "description",
                                            "children": [
                                                {
                                                    "tag": "text",
                                                    "text": "Courses du  Lundi 27 Mars 2023"
                                                }
                                            ]
                                        },
                                        {
                                            "tag": "article",
                                            "class": "liste",
                                            "children": [
                                                {
                                                    "tag": "header",
                                                    "class": "liste coul_reunions",
                                                    "children": [
                                                        {
                                                            "tag": "nav",
                                                            "class": "num_reunion",
                                                            "itemprop": "description",
                                                            "children": [
                                                                {
                                                                    "tag": "text",
                                                                    "text": "R1"
                                                                }
                                                            ]
                                                        },
                                                        {
                                                            "tag": "h2",
                                                            "class": "nom_reunion",
                                                            "itemprop": "name",
                                                            "children": [
                                                                {
                                                                    "tag": "text",
                                                                    "text": "FONTAINEBLEAU"
                                                                }
                                                            ]
                                                        }
                                                    ]
                                                },
                                                {
                                                    "tag": "a",
                                                    "class": "liste",
                                                    "href": "https://www.pronostics-courses.fr/php/courses-lendemain/pronostics-courses-1-1.html",
                                                    "itemprop": "url",
                                                    "title": "Prix Hubert de Catheu",
                                                    "children": [
                                                        {
                                                            "tag": "aside",
                                                            "class": "liste first",
                                                            "children": [
                                                                {
                                                                    "tag": "nav",
                                                                    "class": "num_course",
                                                                    "children": [
                                                                        {
                                                                            "tag": "meta",
                                                                            "itemprop": "name",
                                                                            "content": "Prix Hubert de Catheu"
                                                                        },
                                                                        {
                                                                            "tag": "span",
                                                                            "itemprop": "description",
                                                                            "children": [
                                                                                {
                                                                                    "tag": "text",
                                                                                    "text": "C1 "
                                                                                }
                                                                            ]
                                                                        }
                                                                    ]
                                                                },
                                                                {
                                                                    "tag": "nav",
                                                                    "class": "nom_course",
                                                                    "children": [
                                                                        {
                                                                            "tag": "span",
                                                                            "class": "nom_course",
                                                                            "itemprop": "name",
                                                                            "children": [
                                                                                {
                                                                                    "tag": "text",
                                                                                    "text": "Prix Hubert de Catheu"
                                                                                }
                                                                            ]
                                                                        }
                                                                    ]
                                                                },
                                                                {
                                                                    "tag": "div",
                                                                    "class": "pari",
                                                                    "itemprop": "about",
                                                                    "children": [
                                                                        {
                                                                            "tag": "div",
                                                                            "class": "parallelogramme logo_2sur4 paris_none",
                                                                            "role": "img",
                                                                            "aria-label": "2sur4",
                                                                            "title": "2sur4"
                                                                        },
                                                                        {
                                                                            "tag": "div",
                                                                            "class": "parallelogramme logo_multi paris_none",
                                                                            "role": "img",
                                                                            "aria-label": "Multi",
                                                                            "title": "Multi"
                                                                        },
                                                                        {
                                                                            "tag": "div",
                                                                            "class": "parallelogramme logo_tierce paris_plain",
                                                                            "role": "img",
                                                                            "aria-label": "Tiercé",
                                                                            "title": "Tiercé"
                                                                        },
                                                                        {
                                                                            "tag": "div",
                                                                            "class": "parallelogramme logo_quarte paris_plain",
                                                                            "role": "img",
                                                                            "aria-label": "Quarté",
                                                                            "title": "Quarté"
                                                                        },
                                                                        {
                                                                            "tag": "div",
                                                                            "class": "parallelogramme logo_quinte paris_plain",
                                                                            "role": "img",
                                                                            "aria-label": "Quinté",
                                                                            "title": "Quinté"
                                                                        }
                                                                    ]
                                                                },
                                                                {
                                                                    "tag": "nav",
                                                                    "class": "heure",
                                                                    "children": [
                                                                        {
                                                                            "tag": "b",
                                                                            "children": [
                                                                                {
                                                                                    "tag": "text",
                                                                                    "text": "13h50"
                                                                                }
                                                                            ]
                                                                        }
                                                                    ]
                                                                },
                                                                {
                                                                    "tag": "nav",
                                                                    "class": "partants",
                                                                    "children": [
                                                                        {
                                                                            "tag": "b",
                                                                            "children": [
                                                                                {
                                                                                    "tag": "text",
                                                                                    "text": "16"
                                                                                }
                                                                            ]
                                                                        },
                                                                        {
                                                                            "tag": "br"
                                                                        },
                                                                        {
                                                                            "tag": "text",
                                                                            "text": "partants"
                                                                        }
                                                                    ]
                                                                },
                                                                {
                                                                    "tag": "nav",
                                                                    "class": "liste",
                                                                    "children": [
                                                                        {
                                                                            "tag": "text",
                                                                            "text": "Galop - Handicap divisé - Classe 2 -  et à gauche - A droite et à gauche - 53 000 € -  1200  m"
                                                                        }
                                                                    ]
                                                                },
                                                                {
                                                                    "tag": "nav",
                                                                    "class": "liste",
                                                                    "children": [
                                                                        {
                                                                            "tag": "text",
                                                                            "text": "Première épreuve - Corde A droite et à gauche - Ligne droite - Réf:+21"
                                                                        }
                                                                    ]
                                                                }
                                                            ]
                                                        }
                                                    ]
                                                },
                                                {
                                                    "tag": "a",
                                                    "class": "liste",
                                                    "href": "https://www.pronostics-courses.fr/php/courses-lendemain/pronostics-courses-1-8.html",
                                                    "itemprop": "url",
                                                    "title": "Prix de Fontaine-le-Port",
                                                    "children": [
                                                        {
                                                            "tag": "aside",
                                                            "class": "liste last",
                                                            "children": [
                                                                {
                                                                    "tag": "nav",
                                                                    "class": "num_course",
                                                                    "children": [
                                                                        {
                                                                            "tag": "meta",
                                                                            "itemprop": "name",
                                                                            "content": "Prix de Fontaine-le-Port"
                                                                        },
                                                                        {
                                                                            "tag": "span",
                                                                            "itemprop": "description",
                                                                            "children": [
                                                                                {
                                                                                    "tag": "text",
                                                                                    "text": "C8 "
                                                                                }
                                                                            ]
                                                                        }
                                                                    ]
                                                                },
                                                                {
                                                                    "tag": "nav",
                                                                    "class": "nom_course",
                                                                    "children": [
                                                                        {
                                                                            "tag": "span",
                                                                            "class": "nom_course",
                                                                            "itemprop": "name",
                                                                            "children": [
                                                                                {
                                                                                    "tag": "text",
                                                                                    "text": "Prix de Fontaine-le-Port"
                                                                                }
                                                                            ]
                                                                        }
                                                                    ]
                                                                },
                                                                {
                                                                    "tag": "div",
                                                                    "class": "pari",
                                                                    "itemprop": "about",
                                                                    "children": [
                                                                        {
                                                                            "tag": "div",
                                                                            "class": "parallelogramme logo_simple paris_none",
                                                                            "role": "img",
                                                                            "aria-label": "Simple",
                                                                            "title": "Simple"
                                                                        },
                                                                        {
                                                                            "tag": "div",
                                                                            "class": "parallelogramme logo_2sur4 paris_none",
                                                                            "role": "img",
                                                                            "aria-label": "2sur4",
                                                                            "title": "2sur4"
                                                                        },
                                                                        {
                                                                            "tag": "div",
                                                                            "class": "parallelogramme logo_couple paris_none",
                                                                            "role": "img",
                                                                            "aria-label": "Couplé",
                                                                            "title": "Couplé"
                                                                        },
                                                                        {
                                                                            "tag": "div",
                                                                            "class": "parallelogramme logo_couple_ordre paris_none",
                                                                            "role": "img",
                                                                            "aria-label": "Couplé Ordre",
                                                                            "title": "Couplé Ordre"
                                                                        },
                                                                        {
                                                                            "tag": "div",
                                                                            "class": "parallelogramme logo_trio paris_plain",
                                                                            "role": "img",
                                                                            "aria-label": "Trio",
                                                                            "title": "Trio"
                                                                        },
                                                                        {
                                                                            "tag": "div",
                                                                            "class": "parallelogramme logo_multi paris_plain",
                                                                            "role": "img",
                                                                            "aria-label": "Multi",
                                                                            "title": "Multi"
                                                                        },
                                                                        {
                                                                            "tag": "div",
                                                                            "class": "parallelogramme logo_pick5 paris_plain",
                                                                            "role": "img",
                                                                            "aria-label": "Pick5",
                                                                            "title": "Pick5"
                                                                        }
                                                                    ]
                                                                },
                                                                {
                                                                    "tag": "nav",
                                                                    "class": "heure",
                                                                    "children": [
                                                                        {
                                                                            "tag": "b",
                                                                            "children": [
                                                                                {
                                                                                    "tag": "text",
                                                                                    "text": "17h55"
                                                                                }
                                                                            ]
                                                                        }
                                                                    ]
                                                                },
                                                                {
                                                                    "tag": "nav",
                                                                    "class": "partants",
                                                                    "children": [
                                                                        {
                                                                            "tag": "b",
                                                                            "children": [
                                                                                {
                                                                                    "tag": "text",
                                                                                    "text": "16"
                                                                                }
                                                                            ]
                                                                        },
                                                                        {
                                                                            "tag": "br"
                                                                        },
                                                                        {
                                                                            "tag": "text",
                                                                            "text": "partants"
                                                                        }
                                                                    ]
                                                                },
                                                                {
                                                                    "tag": "nav",
                                                                    "class": "liste",
                                                                    "children": [
                                                                        {
                                                                            "tag": "text",
                                                                            "text": "Galop - Handicap divisé - Classe 3 -  et à gauche - A droite et à gauche - 27 000 € -  1200  m"
                                                                        }
                                                                    ]
                                                                },
                                                                {
                                                                    "tag": "nav",
                                                                    "class": "liste",
                                                                    "children": [
                                                                        {
                                                                            "tag": "text",
                                                                            "text": "Deuxième épreuve - Corde A droite et à gauche - Ligne droite - Réf:+30,5"
                                                                        }
                                                                    ]
                                                                }
                                                            ]
                                                        }
                                                    ]
                                                }
                                            ]
                                        }
                                    ]
                                },
                                {
                                    "tag": "div",
                                    "class": "tableau_liste_accueil",
                                    "itemscope": "",
                                    "itemtype": "http://schema.org/Table",
                                    "children": [
                                        {
                                            "tag": "meta",
                                            "itemprop": "name",
                                            "content": "navigation_menu"
                                        },
                                        {
                                            "tag": "article",
                                            "class": "liste",
                                            "children": [
                                                {
                                                    "tag": "header",
                                                    "class": "liste coul_reunions",
                                                    "children": [
                                                        {
                                                            "tag": "nav",
                                                            "class": "num_reunion",
                                                            "itemprop": "description",
                                                            "children": [
                                                                {
                                                                    "tag": "text",
                                                                    "text": "R4"
                                                                }
                                                            ]
                                                        },
                                                        {
                                                            "tag": "h2",
                                                            "class": "nom_reunion",
                                                            "itemprop": "name",
                                                            "children": [
                                                                {
                                                                    "tag": "text",
                                                                    "text": "LE CROISE-LAROCHE"
                                                                }
                                                            ]
                                                        }
                                                    ]
                                                },
                                                {
                                                    "tag": "a",
                                                    "class": "liste",
                                                    "href": "https://www.pronostics-courses.fr/php/courses-lendemain/pronostics-courses-4-2.html",
                                                    "itemprop": "url",
                                                    "title": "Prix Zeturf",
                                                    "children": [
                                                        {
                                                            "tag": "aside",
                                                            "class": "liste first",
                                                            "children": [
                                                                {
                                                                    "tag": "nav",
                                                                    "class": "num_course",
                                                                    "children": [
                                                                        {
                                                                            "tag": "meta",
                                                                            "itemprop": "name",
                                                                            "content": "Prix Zeturf"
                                                                        },
                                                                        {
                                                                            "tag": "span",
                                                                            "itemprop": "description",
                                                                            "children": [
                                                                                {
                                                                                    "tag": "text",
                                                                                    "text": "C2 "
                                                                                }
                                                                            ]
                                                                        }
                                                                    ]
                                                                },
                                                                {
                                                                    "tag": "nav",
                                                                    "class": "nom_course",
                                                                    "children": [
                                                                        {
                                                                            "tag": "span",
                                                                            "class": "nom_course",
                                                                            "itemprop": "name",
                                                                            "children": [
                                                                                {
                                                                                    "tag": "text",
                                                                                    "text": "Prix Zeturf"
                                                                                }
                                                                            ]
                                                                        }
                                                                    ]
                                                                },
                                                                {
                                                                    "tag": "div",
                                                                    "class": "pari",
                                                                    "itemprop": "about",
                                                                    "children": [
                                                                        {
                                                                            "tag": "div",
                                                                            "class": "parallelogramme logo_simple paris_none",
                                                                            "role": "img",
                                                                            "aria-label": "Simple",
                                                                            "title": "Simple"
                                                                        },
                                                                        {
                                                                            "tag": "div",
                                                                            "class": "parallelogramme logo_2sur4 paris_none",
                                                                            "role": "img",
                                                                            "aria-label": "2sur4",
                                                                            "title": "2sur4"
                                                                        },
                                                                        {
                                                                            "tag": "div",
                                                                            "class": "parallelogramme logo_couple paris_none",
                                                                            "role": "img",
                                                                            "aria-label": "Couplé",
                                                                            "title": "Couplé"
                                                                        },
                                                                        {
                                                                            "tag": "div",
                                                                            "class": "parallelogramme logo_couple_ordre paris_none",
                                                                            "role": "img",
                                                                            "aria-label": "Couplé Ordre",
                                                                            "title": "Couplé Ordre"
                                                                        },
                                                                        {
                                                                            "tag": "div",
                                                                            "class": "parallelogramme logo_trio paris_plain",
                                                                            "role": "img",
                                                                            "aria-label": "Trio",
                                                                            "title": "Trio"
                                                                        },
                                                                        {
                                                                            "tag": "div",
                                                                            "class": "parallelogramme logo_multi paris_plain",
                                                                            "role": "img",
                                                                            "aria-label": "Multi",
                                                                            "title": "Multi"
                                                                        },
                                                                        {
                                                                            "tag": "div",
                                                                            "class": "parallelogramme logo_pick5 paris_plain",
                                                                            "role": "img",
                                                                            "aria-label": "Pick5",
                                                                            "title": "Pick5"
                                                                        }
                                                                    ]
                                                                },
                                                                {
                                                                    "tag": "nav",
                                                                    "class": "heure",
                                                                    "children": [
                                                                        {
                                                                            "tag": "b",
                                                                            "children": [
                                                                                {
                                                                                    "tag": "text",
                                                                                    "text": "17h03"
                                                                                }
                                                                            ]
                                                                        }
                                                                    ]
                                                                },
                                                                {
                                                                    "tag": "nav",
                                                                    "class": "partants",
                                                                    "children": [
                                                                        {
                                                                            "tag": "b",
                                                                            "children": [
                                                                                {
                                                                                    "tag": "text",
                                                                                    "text": "16"
                                                                                }
                                                                            ]
                                                                        },
                                                                        {
                                                                            "tag": "br"
                                                                        },
                                                                        {
                                                                            "tag": "text",
                                                                            "text": "partants"
                                                                        }
                                                                    ]
                                                                },
                                                                {
                                                                    "tag": "nav",
                                                                    "class": "liste"
                                                                },
                                                                {
                                                                    "tag": "nav",
                                                                    "class": "liste"
                                                                }
                                                            ]
                                                        }
                                                    ]
                                                },
                                                {
                                                    "tag": "a",
                                                    "class": "liste",
                                                    "href": "https://www.pronostics-courses.fr/php/courses-lendemain/pronostics-courses-4-3.html",
                                                    "itemprop": "url",
                                                    "title": "Prix de Bretagne",
                                                    "children": [
                                                        {
                                                            "tag": "aside",
                                                            "class": "liste last",
                                                            "children": [
                                                                {
                                                                    "tag": "nav",
                                                                    "class": "num_course",
                                                                    "children": [
                                                                        {
                                                                            "tag": "meta",
                                                                            "itemprop": "name",
                                                                            "content": "Prix de Bretagne"
                                                                        },
                                                                        {
                                                                            "tag": "span",
                                                                            "itemprop": "description",
                                                                            "children": [
                                                                                {
                                                                                    "tag": "text",
                                                                                    "text": "C3 "
                                                                                }
                                                                            ]
                                                                        }
                                                                    ]
                                                                },
                                                                {
                                                                    "tag": "nav",
                                                                    "class": "nom_course",
                                                                    "children": [
                                                                        {
                                                                            "tag": "span",
                                                                            "class": "nom_course",
                                                                            "itemprop": "name",
                                                                            "children": [
                                                                                {
                                                                                    "tag": "text",
                                                                                    "text": "Prix de Bretagne"
                                                                                }
                                                                            ]
                                                                        }
                                                                    ]
                                                                },
                                                                {
                                                                    "tag": "div",
                                                                    "class": "pari",
                                                                    "itemprop": "about",
                                                                    "children": [
                                                                        {
                                                                            "tag": "div",
                                                                            "class": "parallelogramme logo_simple paris_none",
                                                                            "role": "img",
                                                                            "aria-label": "Simple",
                                                                            "title": "Simple"
                                                                        },
                                                                        {
                                                                            "tag": "div",
                                                                            "class": "parallelogramme logo_2sur4 paris_none",
                                                                            "role": "img",
                                                                            "aria-label": "2sur4",
                                                                            "title": "2sur4"
                                                                        },
                                                                        {
                                                                            "tag": "div",
                                                                            "class": "parallelogramme logo_couple paris_none",
                                                                            "role": "img",
                                                                            "aria-label": "Couplé",
                                                                            "title": "Couplé"
                                                                        },
                                                                        {
                                                                            "tag": "div",
                                                                            "class": "parallelogramme logo_couple_ordre paris_none",
                                                                            "role": "img",
                                                                            "aria-label": "Couplé Ordre",
                                                                            "title": "Couplé Ordre"
                                                                        },
                                                                        {
                                                                            "tag": "div",
                                                                            "class": "parallelogramme logo_trio paris_plain",
                                                                            "role": "img",
                                                                            "aria-label": "Trio",
                                                                            "title": "Trio"
                                                                        },
                                                                        {
                                                                            "tag": "div",
                                                                            "class": "parallelogramme logo_multi paris_plain",
                                                                            "role": "img",
                                                                            "aria-label": "Multi",
                                                                            "title": "Multi"
                                                                        },
                                                                        {
                                                                            "tag": "div",
                                                                            "class": "parallelogramme logo_quarte_regional paris_plain",
                                                                            "role": "img",
                                                                            "aria-label": "Quarté Régional",
                                                                            "title": "Quarté Régional"
                                                                        }
                                                                    ]
                                                                },
                                                                {
                                                                    "tag": "nav",
                                                                    "class": "heure",
                                                                    "children": [
                                                                        {
                                                                            "tag": "b",
                                                                            "children": [
                                                                                {
                                                                                    "tag": "text",
                                                                                    "text": "17h37"
                                                                                }
                                                                            ]
                                                                        }
                                                                    ]
                                                                },
                                                                {
                                                                    "tag": "nav",
                                                                    "class": "partants",
                                                                    "children": [
                                                                        {
                                                                            "tag": "b",
                                                                            "children": [
                                                                                {
                                                                                    "tag": "text",
                                                                                    "text": "16"
                                                                                }
                                                                            ]
                                                                        },
                                                                        {
                                                                            "tag": "br"
                                                                        },
                                                                        {
                                                                            "tag": "text",
                                                                            "text": "partants"
                                                                        }
                                                                    ]
                                                                },
                                                                {
                                                                    "tag": "nav",
                                                                    "class": "liste",
                                                                    "children": [
                                                                        {
                                                                            "tag": "text",
                                                                            "text": "Attelé - Course F - trot - 21 000 € -  2825  m"
                                                                        }
                                                                    ]
                                                                },
                                                                {
                                                                    "tag": "nav",
                                                                    "class": "liste",
                                                                    "children": [
                                                                        {
                                                                            "tag": "text",
                                                                            "text": "Femelles - Corde à gauche"
                                                                        }
                                                                    ]
                                                                }
                                                            ]
                                                        }
                                                    ]
                                                }
                                            ]
                                        }
                                    ]
                                },
                                {
                                    "tag": "div",
                                    "class": "tableau_liste_accueil",
                                    "itemscope": "",
                                    "itemtype": "http://schema.org/Table",
                                    "children": [
                                        {
                                            "tag": "meta",
                                            "itemprop": "name",
                                            "content": "navigation_menu"
                                        },
                                        {
                                            "tag": "article",
                                            "class": "liste",
                                            "children": [
                                                {
                                                    "tag": "header",
                                                    "class": "liste coul_reunions",
                                                    "children": [
                                                        {
                                                            "tag": "nav",
                                                            "class": "num_reunion",
                                                            "itemprop": "description",
                                                            "children": [
                                                                {
                                                                    "tag": "text",
                                                                    "text": "R7"
                                                                }
                                                            ]
                                                        },
                                                        {
                                                            "tag": "h2",
                                                            "class": "nom_reunion",
                                                            "itemprop": "name",
                                                            "children": [
                                                                {
                                                                    "tag": "text",
                                                                    "text": "CHATILLON-SUR-CHALARONNE"
                                                                }
                                                            ]
                                                        }
                                                    ]
                                                },
                                                {
                                                    "tag": "a",
                                                    "class": "liste",
                                                    "href": "https://www.pronostics-courses.fr/php/courses-lendemain/pronostics-courses-7-7.html",
                                                    "itemprop": "url",
                                                    "title": "Prix Claude Bergerat",
                                                    "children": [
                                                        {
                                                            "tag": "aside",
                                                            "class": "liste one",
                                                            "children": [
                                                                {
                                                                    "tag": "nav",
                                                                    "class": "num_course",
                                                                    "children": [
                                                                        {
                                                                            "tag": "meta",
                                                                            "itemprop": "name",
                                                                            "content": "Prix Claude Bergerat"
                                                                        },
                                                                        {
                                                                            "tag": "span",
                                                                            "itemprop": "description",
                                                                            "children": [
                                                                                {
                                                                                    "tag": "text",
                                                                                    "text": "C7 "
                                                                                }
                                                                            ]
                                                                        }
                                                                    ]
                                                                },
                                                                {
                                                                    "tag": "nav",
                                                                    "class": "nom_course",
                                                                    "children": [
                                                                        {
                                                                            "tag": "span",
                                                                            "class": "nom_course",
                                                                            "itemprop": "name",
                                                                            "children": [
                                                                                {
                                                                                    "tag": "text",
                                                                                    "text": "Prix Claude Bergerat"
                                                                                }
                                                                            ]
                                                                        }
                                                                    ]
                                                                },
                                                                {
                                                                    "tag": "div",
                                                                    "class": "pari",
                                                                    "itemprop": "about",
                                                                    "children": [
                                                                        {
                                                                            "tag": "div",
                                                                            "class": "parallelogramme logo_simple paris_none",
                                                                            "role": "img",
                                                                            "aria-label": "Simple",
                                                                            "title": "Simple"
                                                                        },
                                                                        {
                                                                            "tag": "div",
                                                                            "class": "parallelogramme logo_couple paris_none",
                                                                            "role": "img",
                                                                            "aria-label": "Couplé",
                                                                            "title": "Couplé"
                                                                        },
                                                                        {
                                                                            "tag": "div",
                                                                            "class": "parallelogramme logo_trio paris_plain",
                                                                            "role": "img",
                                                                            "aria-label": "Trio",
                                                                            "title": "Trio"
                                                                        },
                                                                        {
                                                                            "tag": "div",
                                                                            "class": "parallelogramme logo_mini_multi paris_plain",
                                                                            "role": "img",
                                                                            "aria-label": "Mini Multi",
                                                                            "title": "Mini Multi"
                                                                        },
                                                                        {
                                                                            "tag": "div",
                                                                            "class": "parallelogramme logo_quarte_regional paris_plain",
                                                                            "role": "img",
                                                                            "aria-label": "Quarté Régional",
                                                                            "title": "Quarté Régional"
                                                                        }
                                                                    ]
                                                                },
                                                                {
                                                                    "tag": "nav",
                                                                    "class": "heure",
                                                                    "children": [
                                                                        {
                                                                            "tag": "b",
                                                                            "children": [
                                                                                {
                                                                                    "tag": "text",
                                                                                    "text": "17h00"
                                                                                }
                                                                            ]
                                                                        }
                                                                    ]
                                                                },
                                                                {
                                                                    "tag": "nav",
                                                                    "class": "partants",
                                                                    "children": [
                                                                        {
                                                                            "tag": "b",
                                                                            "children": [
                                                                                {
                                                                                    "tag": "text",
                                                                                    "text": "12"
                                                                                }
                                                                            ]
                                                                        },
                                                                        {
                                                                            "tag": "br"
                                                                        },
                                                                        {
                                                                            "tag": "text",
                                                                            "text": "partants"
                                                                        }
                                                                    ]
                                                                },
                                                                {
                                                                    "tag": "nav",
                                                                    "class": "liste",
                                                                    "children": [
                                                                        {
                                                                            "tag": "text",
                                                                            "text": "Attelé - Course F - trot - 21 000 € -  2675  m"
                                                                        }
                                                                    ]
                                                                },
                                                                {
                                                                    "tag": "nav",
                                                                    "class": "liste",
                                                                    "children": [
                                                                        {
                                                                            "tag": "text",
                                                                            "text": "Corde à gauche"
                                                                        }
                                                                    ]
                                                                }
                                                            ]
                                                        }
                                                    ]
                                                }
                                            ]
                                        }
                                    ]
                                },
                                {
                                    "tag": "br"
                                }
                            ]
                        },
                        {
                            "tag": "div",
                            "class": "bloc blocdroite",
                            "children": [
                                {
                                    "tag": "br"
                                },
                                {
                                    "tag": "article",
                                    "class": "nav_index",
                                    "children": [
                                        {
                                            "tag": "header",
                                            "class": "nav_index",
                                            "children": [
                                                {
                                                    "tag": "div",
                                                    "class": "bloctextehaut",
                                                    "children": [
                                                        {
                                                            "tag": "h2",
                                                            "children": [
                                                                {
                                                                    "tag": "text",
                                                                    "text": "Bonjour Mesdames et Messieurs"
                                                                }
                                                            ]
                                                        }
                                                    ]
                                                }
                                            ]
                                        },
                                        {
                                            "tag": "aside",
                                            "class": "nav_index",
                                            "children": [
                                                {
                                                    "tag": "ul",
                                                    "class": "bloctextebas",
                                                    "itemscope": "",
                                                    "itemtype": "http://schema.org/ItemList",
                                                    "children": [
                                                        {
                                                            "tag": "li",
                                                            "itemprop": "itemListElement",
                                                            "itemscope": "",
                                                            "itemtype": "http://schema.org/ListItem",
                                                            "children": [
                                                                {
                                                                    "tag": "meta",
                                                                    "itemprop": "position",
                                                                    "content": "1"
                                                                },
                                                                {
                                                                    "tag": "div",
                                                                    "class": "text",
                                                                    "children": [
                                                                        {
                                                                            "tag": "text",
                                                                            "text": "Ce site est destiné à donner des Statistiques Prévisionnelles, des Pronostics et des Historiques Graphiques sur les Courses du lendemain ou de l'après-midi :"
                                                                        }
                                                                    ]
                                                                },
                                                                {
                                                                    "tag": "h3",
                                                                    "itemprop": "item",
                                                                    "itemscope": "",
                                                                    "itemtype": "http://schema.org/SiteNavigationElement",
                                                                    "children": [
                                                                        {
                                                                            "tag": "a",
                                                                            "class": "bouton bouton_droit coul_boutons",
                                                                            "title": "Pronostics Lundi 27 Mars 2023",
                                                                            "itemprop": "url",
                                                                            "href": "https://www.pronostics-courses.fr/php/courses-lendemain/new-courses.php",
                                                                            "children": [
                                                                                {
                                                                                    "tag": "span",
                                                                                    "itemprop": "description",
                                                                                    "children": [
                                                                                        {
                                                                                            "tag": "text",
                                                                                            "text": "Pronostics Lundi 27 Mars 2023"
                                                                                        }
                                                                                    ]
                                                                                }
                                                                            ]
                                                                        }
                                                                    ]
                                                                }
                                                            ]
                                                        },
                                                        {
                                                            "tag": "li",
                                                            "itemprop": "itemListElement",
                                                            "itemscope": "",
                                                            "itemtype": "http://schema.org/ListItem",
                                                            "children": [
                                                                {
                                                                    "tag": "meta",
                                                                    "itemprop": "position",
                                                                    "content": "2"
                                                                },
                                                                {
                                                                    "tag": "div",
                                                                    "class": "text",
                                                                    "les": "",
                                                                    "courses": "",
                                                                    "du": "",
                                                                    "soir": "",
                                                                    "ou": "",
                                                                    "de": "",
                                                                    "la": "",
                                                                    "veille": "",
                                                                    ":": "",
                                                                    "children": [
                                                                        {
                                                                            "tag": "h3",
                                                                            "itemprop": "item",
                                                                            "itemscope": "",
                                                                            "itemtype": "http://schema.org/SiteNavigationElement",
                                                                            "children": [
                                                                                {
                                                                                    "tag": "a",
                                                                                    "class": "bouton bouton_droit coul_boutons",
                                                                                    "title": "Pronostics Dimanche 26 Mars 2023",
                                                                                    "itemprop": "url",
                                                                                    "href": "https://www.pronostics-courses.fr/php/courses-aujourdhui/new-courses.php",
                                                                                    "children": [
                                                                                        {
                                                                                            "tag": "span",
                                                                                            "itemprop": "description",
                                                                                            "children": [
                                                                                                {
                                                                                                    "tag": "text",
                                                                                                    "text": "Pronostics Dimanche 26 Mars 2023"
                                                                                                }
                                                                                            ]
                                                                                        }
                                                                                    ]
                                                                                }
                                                                            ]
                                                                        },
                                                                        {
                                                                            "tag": "li",
                                                                            "itemprop": "itemListElement",
                                                                            "itemscope": "",
                                                                            "itemtype": "http://schema.org/ListItem",
                                                                            "children": [
                                                                                {
                                                                                    "tag": "meta",
                                                                                    "itemprop": "position",
                                                                                    "content": "3"
                                                                                },
                                                                                {
                                                                                    "tag": "div",
                                                                                    "class": "text",
                                                                                    "children": [
                                                                                        {
                                                                                            "tag": "text",
                                                                                            "text": ", ou sur les Courses passées :"
                                                                                        }
                                                                                    ]
                                                                                },
                                                                                {
                                                                                    "tag": "div",
                                                                                    "id": "calendar",
                                                                                    "children": [
                                                                                        {
                                                                                            "tag": "table",
                                                                                            "class": "calendrier coul_boutons",
                                                                                            "children": [
                                                                                                {
                                                                                                    "tag": "tbody",
                                                                                                    "children": [
                                                                                                        {
                                                                                                            "tag": "tr",
                                                                                                            "children": [
                                                                                                                {
                                                                                                                    "tag": "th",
                                                                                                                    "colspan": "7",
                                                                                                                    "children": [
                                                                                                                        {
                                                                                                                            "tag": "text",
                                                                                                                            "text": "26 Mars 2023"
                                                                                                                        }
                                                                                                                    ]
                                                                                                                }
                                                                                                            ]
                                                                                                        },
                                                                                                        {
                                                                                                            "tag": "tr",
                                                                                                            "children": [
                                                                                                                {
                                                                                                                    "tag": "th",
                                                                                                                    "colspan": "7",
                                                                                                                    "children": [
                                                                                                                        {
                                                                                                                            "tag": "form",
                                                                                                                            "action": "https://www.pronostics-courses.fr",
                                                                                                                            "method": "post",
                                                                                                                            "children": [
                                                                                                                                {
                                                                                                                                    "tag": "input",
                                                                                                                                    "type": "hidden",
                                                                                                                                    "name": "day",
                                                                                                                                    "id": "day",
                                                                                                                                    "value": "26"
                                                                                                                                },
                                                                                                                                {
                                                                                                                                    "tag": "input",
                                                                                                                                    "type": "hidden",
                                                                                                                                    "name": "month",
                                                                                                                                    "id": "month",
                                                                                                                                    "value": "3"
                                                                                                                                },
                                                                                                                                {
                                                                                                                                    "tag": "input",
                                                                                                                                    "type": "hidden",
                                                                                                                                    "name": "year",
                                                                                                                                    "id": "year",
                                                                                                                                    "value": "2022"
                                                                                                                                },
                                                                                                                                {
                                                                                                                                    "tag": "input",
                                                                                                                                    "type": "submit",
                                                                                                                                    "value": "<<"
                                                                                                                                }
                                                                                                                            ]
                                                                                                                        },
                                                                                                                        {
                                                                                                                            "tag": "form",
                                                                                                                            "action": "https://www.pronostics-courses.fr",
                                                                                                                            "method": "post",
                                                                                                                            "children": [
                                                                                                                                {
                                                                                                                                    "tag": "input",
                                                                                                                                    "type": "hidden",
                                                                                                                                    "name": "day",
                                                                                                                                    "id": "day",
                                                                                                                                    "value": "26"
                                                                                                                                },
                                                                                                                                {
                                                                                                                                    "tag": "input",
                                                                                                                                    "type": "hidden",
                                                                                                                                    "name": "month",
                                                                                                                                    "id": "month",
                                                                                                                                    "value": "2"
                                                                                                                                },
                                                                                                                                {
                                                                                                                                    "tag": "input",
                                                                                                                                    "type": "hidden",
                                                                                                                                    "name": "year",
                                                                                                                                    "id": "year",
                                                                                                                                    "value": "2023"
                                                                                                                                },
                                                                                                                                {
                                                                                                                                    "tag": "input",
                                                                                                                                    "type": "submit",
                                                                                                                                    "value": "<"
                                                                                                                                }
                                                                                                                            ]
                                                                                                                        },
                                                                                                                        {
                                                                                                                            "tag": "button",
                                                                                                                            "class": "disabled",
                                                                                                                            "children": [
                                                                                                                                {
                                                                                                                                    "tag": "text",
                                                                                                                                    "text": ">"
                                                                                                                                }
                                                                                                                            ]
                                                                                                                        },
                                                                                                                        {
                                                                                                                            "tag": "button",
                                                                                                                            "class": "disabled",
                                                                                                                            "children": [
                                                                                                                                {
                                                                                                                                    "tag": "text",
                                                                                                                                    "text": ">>"
                                                                                                                                }
                                                                                                                            ]
                                                                                                                        }
                                                                                                                    ]
                                                                                                                }
                                                                                                            ]
                                                                                                        },
                                                                                                        {
                                                                                                            "tag": "tr",
                                                                                                            "children": [
                                                                                                                {
                                                                                                                    "tag": "th",
                                                                                                                    "children": [
                                                                                                                        {
                                                                                                                            "tag": "text",
                                                                                                                            "text": "Dim"
                                                                                                                        }
                                                                                                                    ]
                                                                                                                },
                                                                                                                {
                                                                                                                    "tag": "th",
                                                                                                                    "children": [
                                                                                                                        {
                                                                                                                            "tag": "text",
                                                                                                                            "text": "Lun"
                                                                                                                        }
                                                                                                                    ]
                                                                                                                },
                                                                                                                {
                                                                                                                    "tag": "th",
                                                                                                                    "children": [
                                                                                                                        {
                                                                                                                            "tag": "text",
                                                                                                                            "text": "Mar"
                                                                                                                        }
                                                                                                                    ]
                                                                                                                },
                                                                                                                {
                                                                                                                    "tag": "th",
                                                                                                                    "children": [
                                                                                                                        {
                                                                                                                            "tag": "text",
                                                                                                                            "text": "Mer"
                                                                                                                        }
                                                                                                                    ]
                                                                                                                },
                                                                                                                {
                                                                                                                    "tag": "th",
                                                                                                                    "children": [
                                                                                                                        {
                                                                                                                            "tag": "text",
                                                                                                                            "text": "Jeu"
                                                                                                                        }
                                                                                                                    ]
                                                                                                                },
                                                                                                                {
                                                                                                                    "tag": "th",
                                                                                                                    "children": [
                                                                                                                        {
                                                                                                                            "tag": "text",
                                                                                                                            "text": "Ven"
                                                                                                                        }
                                                                                                                    ]
                                                                                                                },
                                                                                                                {
                                                                                                                    "tag": "th",
                                                                                                                    "children": [
                                                                                                                        {
                                                                                                                            "tag": "text",
                                                                                                                            "text": "Sam"
                                                                                                                        }
                                                                                                                    ]
                                                                                                                }
                                                                                                            ]
                                                                                                        },
                                                                                                        {
                                                                                                            "tag": "tr",
                                                                                                            "children": [
                                                                                                                {
                                                                                                                    "tag": "td"
                                                                                                                },
                                                                                                                {
                                                                                                                    "tag": "td"
                                                                                                                },
                                                                                                                {
                                                                                                                    "tag": "td"
                                                                                                                },
                                                                                                                {
                                                                                                                    "tag": "td",
                                                                                                                    "children": [
                                                                                                                        {
                                                                                                                            "tag": "a",
                                                                                                                            "href": "https://www.pronostics-courses.fr/php/courses-anciennes/liste-old-courses-1-3-2023.html",
                                                                                                                            "children": [
                                                                                                                                {
                                                                                                                                    "tag": "text",
                                                                                                                                    "text": "1"
                                                                                                                                }
                                                                                                                            ]
                                                                                                                        }
                                                                                                                    ]
                                                                                                                },
                                                                                                                {
                                                                                                                    "tag": "td",
                                                                                                                    "children": [
                                                                                                                        {
                                                                                                                            "tag": "a",
                                                                                                                            "href": "https://www.pronostics-courses.fr/php/courses-anciennes/liste-old-courses-2-3-2023.html",
                                                                                                                            "children": [
                                                                                                                                {
                                                                                                                                    "tag": "text",
                                                                                                                                    "text": "2"
                                                                                                                                }
                                                                                                                            ]
                                                                                                                        }
                                                                                                                    ]
                                                                                                                },
                                                                                                                {
                                                                                                                    "tag": "td",
                                                                                                                    "children": [
                                                                                                                        {
                                                                                                                            "tag": "a",
                                                                                                                            "href": "https://www.pronostics-courses.fr/php/courses-anciennes/liste-old-courses-3-3-2023.html",
                                                                                                                            "children": [
                                                                                                                                {
                                                                                                                                    "tag": "text",
                                                                                                                                    "text": "3"
                                                                                                                                }
                                                                                                                            ]
                                                                                                                        }
                                                                                                                    ]
                                                                                                                },
                                                                                                                {
                                                                                                                    "tag": "td",
                                                                                                                    "children": [
                                                                                                                        {
                                                                                                                            "tag": "a",
                                                                                                                            "href": "https://www.pronostics-courses.fr/php/courses-anciennes/liste-old-courses-4-3-2023.html",
                                                                                                                            "children": [
                                                                                                                                {
                                                                                                                                    "tag": "text",
                                                                                                                                    "text": "4"
                                                                                                                                }
                                                                                                                            ]
                                                                                                                        }
                                                                                                                    ]
                                                                                                                }
                                                                                                            ]
                                                                                                        },
                                                                                                        {
                                                                                                            "tag": "tr",
                                                                                                            "children": [
                                                                                                                {
                                                                                                                    "tag": "td",
                                                                                                                    "children": [
                                                                                                                        {
                                                                                                                            "tag": "a",
                                                                                                                            "href": "https://www.pronostics-courses.fr/php/courses-anciennes/liste-old-courses-5-3-2023.html",
                                                                                                                            "children": [
                                                                                                                                {
                                                                                                                                    "tag": "text",
                                                                                                                                    "text": "5"
                                                                                                                                }
                                                                                                                            ]
                                                                                                                        }
                                                                                                                    ]
                                                                                                                },
                                                                                                                {
                                                                                                                    "tag": "td",
                                                                                                                    "children": [
                                                                                                                        {
                                                                                                                            "tag": "a",
                                                                                                                            "href": "https://www.pronostics-courses.fr/php/courses-anciennes/liste-old-courses-6-3-2023.html",
                                                                                                                            "children": [
                                                                                                                                {
                                                                                                                                    "tag": "text",
                                                                                                                                    "text": "6"
                                                                                                                                }
                                                                                                                            ]
                                                                                                                        }
                                                                                                                    ]
                                                                                                                },
                                                                                                                {
                                                                                                                    "tag": "td",
                                                                                                                    "children": [
                                                                                                                        {
                                                                                                                            "tag": "a",
                                                                                                                            "href": "https://www.pronostics-courses.fr/php/courses-anciennes/liste-old-courses-7-3-2023.html",
                                                                                                                            "children": [
                                                                                                                                {
                                                                                                                                    "tag": "text",
                                                                                                                                    "text": "7"
                                                                                                                                }
                                                                                                                            ]
                                                                                                                        }
                                                                                                                    ]
                                                                                                                },
                                                                                                                {
                                                                                                                    "tag": "td",
                                                                                                                    "children": [
                                                                                                                        {
                                                                                                                            "tag": "a",
                                                                                                                            "href": "https://www.pronostics-courses.fr/php/courses-anciennes/liste-old-courses-8-3-2023.html",
                                                                                                                            "children": [
                                                                                                                                {
                                                                                                                                    "tag": "text",
                                                                                                                                    "text": "8"
                                                                                                                                }
                                                                                                                            ]
                                                                                                                        }
                                                                                                                    ]
                                                                                                                },
                                                                                                                {
                                                                                                                    "tag": "td",
                                                                                                                    "children": [
                                                                                                                        {
                                                                                                                            "tag": "a",
                                                                                                                            "href": "https://www.pronostics-courses.fr/php/courses-anciennes/liste-old-courses-9-3-2023.html",
                                                                                                                            "children": [
                                                                                                                                {
                                                                                                                                    "tag": "text",
                                                                                                                                    "text": "9"
                                                                                                                                }
                                                                                                                            ]
                                                                                                                        }
                                                                                                                    ]
                                                                                                                },
                                                                                                                {
                                                                                                                    "tag": "td",
                                                                                                                    "children": [
                                                                                                                        {
                                                                                                                            "tag": "a",
                                                                                                                            "href": "https://www.pronostics-courses.fr/php/courses-anciennes/liste-old-courses-10-3-2023.html",
                                                                                                                            "children": [
                                                                                                                                {
                                                                                                                                    "tag": "text",
                                                                                                                                    "text": "10"
                                                                                                                                }
                                                                                                                            ]
                                                                                                                        }
                                                                                                                    ]
                                                                                                                },
                                                                                                                {
                                                                                                                    "tag": "td",
                                                                                                                    "children": [
                                                                                                                        {
                                                                                                                            "tag": "a",
                                                                                                                            "href": "https://www.pronostics-courses.fr/php/courses-anciennes/liste-old-courses-11-3-2023.html",
                                                                                                                            "children": [
                                                                                                                                {
                                                                                                                                    "tag": "text",
                                                                                                                                    "text": "11"
                                                                                                                                }
                                                                                                                            ]
                                                                                                                        }
                                                                                                                    ]
                                                                                                                }
                                                                                                            ]
                                                                                                        },
                                                                                                        {
                                                                                                            "tag": "tr",
                                                                                                            "children": [
                                                                                                                {
                                                                                                                    "tag": "td",
                                                                                                                    "children": [
                                                                                                                        {
                                                                                                                            "tag": "a",
                                                                                                                            "href": "https://www.pronostics-courses.fr/php/courses-anciennes/liste-old-courses-12-3-2023.html",
                                                                                                                            "children": [
                                                                                                                                {
                                                                                                                                    "tag": "text",
                                                                                                                                    "text": "12"
                                                                                                                                }
                                                                                                                            ]
                                                                                                                        }
                                                                                                                    ]
                                                                                                                },
                                                                                                                {
                                                                                                                    "tag": "td",
                                                                                                                    "children": [
                                                                                                                        {
                                                                                                                            "tag": "a",
                                                                                                                            "href": "https://www.pronostics-courses.fr/php/courses-anciennes/liste-old-courses-13-3-2023.html",
                                                                                                                            "children": [
                                                                                                                                {
                                                                                                                                    "tag": "text",
                                                                                                                                    "text": "13"
                                                                                                                                }
                                                                                                                            ]
                                                                                                                        }
                                                                                                                    ]
                                                                                                                },
                                                                                                                {
                                                                                                                    "tag": "td",
                                                                                                                    "children": [
                                                                                                                        {
                                                                                                                            "tag": "a",
                                                                                                                            "href": "https://www.pronostics-courses.fr/php/courses-anciennes/liste-old-courses-14-3-2023.html",
                                                                                                                            "children": [
                                                                                                                                {
                                                                                                                                    "tag": "text",
                                                                                                                                    "text": "14"
                                                                                                                                }
                                                                                                                            ]
                                                                                                                        }
                                                                                                                    ]
                                                                                                                },
                                                                                                                {
                                                                                                                    "tag": "td",
                                                                                                                    "children": [
                                                                                                                        {
                                                                                                                            "tag": "a",
                                                                                                                            "href": "https://www.pronostics-courses.fr/php/courses-anciennes/liste-old-courses-15-3-2023.html",
                                                                                                                            "children": [
                                                                                                                                {
                                                                                                                                    "tag": "text",
                                                                                                                                    "text": "15"
                                                                                                                                }
                                                                                                                            ]
                                                                                                                        }
                                                                                                                    ]
                                                                                                                },
                                                                                                                {
                                                                                                                    "tag": "td",
                                                                                                                    "children": [
                                                                                                                        {
                                                                                                                            "tag": "a",
                                                                                                                            "href": "https://www.pronostics-courses.fr/php/courses-anciennes/liste-old-courses-16-3-2023.html",
                                                                                                                            "children": [
                                                                                                                                {
                                                                                                                                    "tag": "text",
                                                                                                                                    "text": "16"
                                                                                                                                }
                                                                                                                            ]
                                                                                                                        }
                                                                                                                    ]
                                                                                                                },
                                                                                                                {
                                                                                                                    "tag": "td",
                                                                                                                    "children": [
                                                                                                                        {
                                                                                                                            "tag": "a",
                                                                                                                            "href": "https://www.pronostics-courses.fr/php/courses-anciennes/liste-old-courses-17-3-2023.html",
                                                                                                                            "children": [
                                                                                                                                {
                                                                                                                                    "tag": "text",
                                                                                                                                    "text": "17"
                                                                                                                                }
                                                                                                                            ]
                                                                                                                        }
                                                                                                                    ]
                                                                                                                },
                                                                                                                {
                                                                                                                    "tag": "td",
                                                                                                                    "children": [
                                                                                                                        {
                                                                                                                            "tag": "a",
                                                                                                                            "href": "https://www.pronostics-courses.fr/php/courses-anciennes/liste-old-courses-18-3-2023.html",
                                                                                                                            "children": [
                                                                                                                                {
                                                                                                                                    "tag": "text",
                                                                                                                                    "text": "18"
                                                                                                                                }
                                                                                                                            ]
                                                                                                                        }
                                                                                                                    ]
                                                                                                                }
                                                                                                            ]
                                                                                                        },
                                                                                                        {
                                                                                                            "tag": "tr",
                                                                                                            "children": [
                                                                                                                {
                                                                                                                    "tag": "td",
                                                                                                                    "children": [
                                                                                                                        {
                                                                                                                            "tag": "a",
                                                                                                                            "href": "https://www.pronostics-courses.fr/php/courses-anciennes/liste-old-courses-19-3-2023.html",
                                                                                                                            "children": [
                                                                                                                                {
                                                                                                                                    "tag": "text",
                                                                                                                                    "text": "19"
                                                                                                                                }
                                                                                                                            ]
                                                                                                                        }
                                                                                                                    ]
                                                                                                                },
                                                                                                                {
                                                                                                                    "tag": "td",
                                                                                                                    "children": [
                                                                                                                        {
                                                                                                                            "tag": "a",
                                                                                                                            "href": "https://www.pronostics-courses.fr/php/courses-anciennes/liste-old-courses-20-3-2023.html",
                                                                                                                            "children": [
                                                                                                                                {
                                                                                                                                    "tag": "text",
                                                                                                                                    "text": "20"
                                                                                                                                }
                                                                                                                            ]
                                                                                                                        }
                                                                                                                    ]
                                                                                                                },
                                                                                                                {
                                                                                                                    "tag": "td",
                                                                                                                    "children": [
                                                                                                                        {
                                                                                                                            "tag": "a",
                                                                                                                            "href": "https://www.pronostics-courses.fr/php/courses-anciennes/liste-old-courses-21-3-2023.html",
                                                                                                                            "children": [
                                                                                                                                {
                                                                                                                                    "tag": "text",
                                                                                                                                    "text": "21"
                                                                                                                                }
                                                                                                                            ]
                                                                                                                        }
                                                                                                                    ]
                                                                                                                },
                                                                                                                {
                                                                                                                    "tag": "td",
                                                                                                                    "children": [
                                                                                                                        {
                                                                                                                            "tag": "a",
                                                                                                                            "href": "https://www.pronostics-courses.fr/php/courses-anciennes/liste-old-courses-22-3-2023.html",
                                                                                                                            "children": [
                                                                                                                                {
                                                                                                                                    "tag": "text",
                                                                                                                                    "text": "22"
                                                                                                                                }
                                                                                                                            ]
                                                                                                                        }
                                                                                                                    ]
                                                                                                                },
                                                                                                                {
                                                                                                                    "tag": "td",
                                                                                                                    "children": [
                                                                                                                        {
                                                                                                                            "tag": "a",
                                                                                                                            "href": "https://www.pronostics-courses.fr/php/courses-anciennes/liste-old-courses-23-3-2023.html",
                                                                                                                            "children": [
                                                                                                                                {
                                                                                                                                    "tag": "text",
                                                                                                                                    "text": "23"
                                                                                                                                }
                                                                                                                            ]
                                                                                                                        }
                                                                                                                    ]
                                                                                                                },
                                                                                                                {
                                                                                                                    "tag": "td",
                                                                                                                    "children": [
                                                                                                                        {
                                                                                                                            "tag": "a",
                                                                                                                            "href": "https://www.pronostics-courses.fr/php/courses-anciennes/liste-old-courses-24-3-2023.html",
                                                                                                                            "children": [
                                                                                                                                {
                                                                                                                                    "tag": "text",
                                                                                                                                    "text": "24"
                                                                                                                                }
                                                                                                                            ]
                                                                                                                        }
                                                                                                                    ]
                                                                                                                },
                                                                                                                {
                                                                                                                    "tag": "td",
                                                                                                                    "children": [
                                                                                                                        {
                                                                                                                            "tag": "a",
                                                                                                                            "href": "https://www.pronostics-courses.fr/php/courses-anciennes/liste-old-courses-25-3-2023.html",
                                                                                                                            "children": [
                                                                                                                                {
                                                                                                                                    "tag": "text",
                                                                                                                                    "text": "25"
                                                                                                                                }
                                                                                                                            ]
                                                                                                                        }
                                                                                                                    ]
                                                                                                                }
                                                                                                            ]
                                                                                                        },
                                                                                                        {
                                                                                                            "tag": "tr",
                                                                                                            "children": [
                                                                                                                {
                                                                                                                    "tag": "td",
                                                                                                                    "class": "aujourdhui",
                                                                                                                    "children": [
                                                                                                                        {
                                                                                                                            "tag": "text",
                                                                                                                            "text": "26"
                                                                                                                        }
                                                                                                                    ]
                                                                                                                },
                                                                                                                {
                                                                                                                    "tag": "td",
                                                                                                                    "class": "disabled",
                                                                                                                    "children": [
                                                                                                                        {
                                                                                                                            "tag": "text",
                                                                                                                            "text": "27"
                                                                                                                        }
                                                                                                                    ]
                                                                                                                },
                                                                                                                {
                                                                                                                    "tag": "td",
                                                                                                                    "class": "disabled",
                                                                                                                    "children": [
                                                                                                                        {
                                                                                                                            "tag": "text",
                                                                                                                            "text": "28"
                                                                                                                        }
                                                                                                                    ]
                                                                                                                },
                                                                                                                {
                                                                                                                    "tag": "td",
                                                                                                                    "class": "disabled",
                                                                                                                    "children": [
                                                                                                                        {
                                                                                                                            "tag": "text",
                                                                                                                            "text": "29"
                                                                                                                        }
                                                                                                                    ]
                                                                                                                },
                                                                                                                {
                                                                                                                    "tag": "td",
                                                                                                                    "class": "disabled",
                                                                                                                    "children": [
                                                                                                                        {
                                                                                                                            "tag": "text",
                                                                                                                            "text": "30"
                                                                                                                        }
                                                                                                                    ]
                                                                                                                },
                                                                                                                {
                                                                                                                    "tag": "td",
                                                                                                                    "class": "disabled",
                                                                                                                    "children": [
                                                                                                                        {
                                                                                                                            "tag": "text",
                                                                                                                            "text": "31"
                                                                                                                        }
                                                                                                                    ]
                                                                                                                },
                                                                                                                {
                                                                                                                    "tag": "td"
                                                                                                                }
                                                                                                            ]
                                                                                                        }
                                                                                                    ]
                                                                                                }
                                                                                            ]
                                                                                        }
                                                                                    ]
                                                                                }
                                                                            ]
                                                                        },
                                                                        {
                                                                            "tag": "p"
                                                                        },
                                                                        {
                                                                            "tag": "article",
                                                                            "class": "nav_index",
                                                                            "children": [
                                                                                {
                                                                                    "tag": "div",
                                                                                    "class": "text",
                                                                                    "children": [
                                                                                        {
                                                                                            "tag": "text",
                                                                                            "text": "Les Pronostics de mon site sont produits automatiquement et  exclusivement par des calculs statistiques dont les données brutes proviennent de la Base de Données contenant les Arrivées des Courses de Janvier 2010 jusqu'à la date d'hier. "
                                                                                        }
                                                                                    ]
                                                                                },
                                                                                {
                                                                                    "tag": "p"
                                                                                },
                                                                                {
                                                                                    "tag": "div",
                                                                                    "class": "text",
                                                                                    "children": [
                                                                                        {
                                                                                            "tag": "text",
                                                                                            "text": "L'algorithme statistique que j'ai mis au point pour celà est indiqué à la page :"
                                                                                        },
                                                                                        {
                                                                                            "tag": "span",
                                                                                            "itemprop": "item",
                                                                                            "itemscope": "",
                                                                                            "itemtype": "http://schema.org/SiteNavigationElement",
                                                                                            "children": [
                                                                                                {
                                                                                                    "tag": "a",
                                                                                                    "class": "bouton coul_boutons",
                                                                                                    "href": "https://www.pronostics-courses.fr/php/courses-anciennes/mode_demploi.html",
                                                                                                    "title": "Contact Webmaster",
                                                                                                    "itemprop": "url",
                                                                                                    "children": [
                                                                                                        {
                                                                                                            "tag": "span",
                                                                                                            "itemprop": "description",
                                                                                                            "children": [
                                                                                                                {
                                                                                                                    "tag": "text",
                                                                                                                    "text": "Méthode d'Utilisation des Statistiques"
                                                                                                                }
                                                                                                            ]
                                                                                                        }
                                                                                                    ]
                                                                                                }
                                                                                            ]
                                                                                        }
                                                                                    ]
                                                                                },
                                                                                {
                                                                                    "tag": "p"
                                                                                },
                                                                                {
                                                                                    "tag": "div",
                                                                                    "class": "text",
                                                                                    "children": [
                                                                                        {
                                                                                            "tag": "text",
                                                                                            "text": "Vous pouvez évaluer le niveau de justesse de mes Pronostics, en comparant les Estimations Statistiques, avant et après les Courses. Les Pronostics, dérivés des statistiques, sont rigoureusement identiques, à ceux figurant la veille des Courses."
                                                                                        }
                                                                                    ]
                                                                                },
                                                                                {
                                                                                    "tag": "p"
                                                                                },
                                                                                {
                                                                                    "tag": "div",
                                                                                    "class": "text",
                                                                                    "children": [
                                                                                        {
                                                                                            "tag": "text",
                                                                                            "text": "Toutes les données de courses : Partants, Résultats et Rapports, de mon site, proviennent exclusivement de mon site partenaire : "
                                                                                        },
                                                                                        {
                                                                                            "tag": "a",
                                                                                            "class": "bouton coul_boutons",
                                                                                            "href": "http://www.lescourses.com/",
                                                                                            "title": "Mon site partenaire : LesCourses.com",
                                                                                            "children": [
                                                                                                {
                                                                                                    "tag": "span",
                                                                                                    "children": [
                                                                                                        {
                                                                                                            "tag": "text",
                                                                                                            "text": "LesCourses.com"
                                                                                                        }
                                                                                                    ]
                                                                                                }
                                                                                            ]
                                                                                        }
                                                                                    ]
                                                                                },
                                                                                {
                                                                                    "tag": "p"
                                                                                },
                                                                                {
                                                                                    "tag": "div",
                                                                                    "class": "text",
                                                                                    "children": [
                                                                                        {
                                                                                            "tag": "text",
                                                                                            "text": "Aucun pronostic et aucune statistique de mon site partenaire : "
                                                                                        },
                                                                                        {
                                                                                            "tag": "a",
                                                                                            "class": "bouton coul_boutons",
                                                                                            "href": "http://www.lescourses.com/",
                                                                                            "title": "Mon site partenaire : LesCourses.com",
                                                                                            "children": [
                                                                                                {
                                                                                                    "tag": "span",
                                                                                                    "children": [
                                                                                                        {
                                                                                                            "tag": "text",
                                                                                                            "text": "LesCourses.com"
                                                                                                        }
                                                                                                    ]
                                                                                                }
                                                                                            ]
                                                                                        },
                                                                                        {
                                                                                            "tag": "text",
                                                                                            "text": " ne figure ni n'est utilisé pour les statistiques et les pronostics de mon site."
                                                                                        },
                                                                                        {
                                                                                            "tag": "p"
                                                                                        },
                                                                                        {
                                                                                            "tag": "text",
                                                                                            "text": "Je suis le seul auteur des pronostics et statistiques de mon site, qui sont calculées de manière entièrement automatique."
                                                                                        },
                                                                                        {
                                                                                            "tag": "p"
                                                                                        },
                                                                                        {
                                                                                            "tag": "text",
                                                                                            "text": "L'algorithme statistique utilisé pour celà, dont je suis l'auteur exclusif, a été mis au point par moi et est constitué exclusivement d'algorithmes dans le domaine public."
                                                                                        }
                                                                                    ]
                                                                                },
                                                                                {
                                                                                    "tag": "p"
                                                                                },
                                                                                {
                                                                                    "tag": "div",
                                                                                    "class": "text",
                                                                                    "children": [
                                                                                        {
                                                                                            "tag": "text",
                                                                                            "text": " Vos messages sont les bienvenus, n'hésitez pas à me poser vos questions sur cette page de contact : "
                                                                                        },
                                                                                        {
                                                                                            "tag": "span",
                                                                                            "itemprop": "item",
                                                                                            "itemscope": "",
                                                                                            "itemtype": "http://schema.org/SiteNavigationElement",
                                                                                            "children": [
                                                                                                {
                                                                                                    "tag": "a",
                                                                                                    "class": "bouton coul_boutons",
                                                                                                    "href": "https://www.pronostics-courses.fr/php/contact/contact.php",
                                                                                                    "rel": "nofollow",
                                                                                                    "title": "Contact Webmaster",
                                                                                                    "itemprop": "url",
                                                                                                    "children": [
                                                                                                        {
                                                                                                            "tag": "span",
                                                                                                            "itemprop": "description",
                                                                                                            "children": [
                                                                                                                {
                                                                                                                    "tag": "text",
                                                                                                                    "text": "Contact Webmaster"
                                                                                                                }
                                                                                                            ]
                                                                                                        }
                                                                                                    ]
                                                                                                }
                                                                                            ]
                                                                                        }
                                                                                    ]
                                                                                }
                                                                            ]
                                                                        },
                                                                        {
                                                                            "tag": "br"
                                                                        }
                                                                    ]
                                                                }
                                                            ]
                                                        }
                                                    ]
                                                }
                                            ]
                                        }
                                    ]
                                }
                            ]
                        },
                        {
                            "tag": "br"
                        },
                        {
                            "tag": "br"
                        },
                        {
                            "tag": "p",
                            "aria-hidden": "true"
                        },
                        {
                            "tag": "hr",
                            "class": "separation"
                        },
                        {
                            "tag": "p",
                            "aria-hidden": "true",
                            "children": [
                                {
                                    "tag": "br"
                                }
                            ]
                        },
                        {
                            "tag": "footer",
                            "class": "nav_index",
                            "children": [
                                {
                                    "tag": "h4",
                                    "class": "coul_listecourses",
                                    "itemscope": "",
                                    "itemtype": "http://schema.org/WebPageElement",
                                    "children": [
                                        {
                                            "tag": "span",
                                            "itemprop": "description",
                                            "children": [
                                                {
                                                    "tag": "text",
                                                    "text": "Webmaster-concepteur  de ce site : Jean François Ortolo"
                                                }
                                            ]
                                        }
                                    ]
                                },
                                {
                                    "tag": "p",
                                    "aria-hidden": "true"
                                },
                                {
                                    "tag": "h4",
                                    "id": "mentions_legales",
                                    "itemscope": "",
                                    "itemtype": "http://schema.org/WebPageElement",
                                    "children": [
                                        {
                                            "tag": "span",
                                            "itemprop": "about",
                                            "itemscope": "",
                                            "itemtype": "http://schema.org/SiteNavigationElement",
                                            "children": [
                                                {
                                                    "tag": "a",
                                                    "itemprop": "url",
                                                    "href": "https://www.pronostics-courses.fr/php/cgu/mentions-legales.html",
                                                    "title": "Mentions légales du site",
                                                    "children": [
                                                        {
                                                            "tag": "span",
                                                            "itemprop": "description",
                                                            "children": [
                                                                {
                                                                    "tag": "text",
                                                                    "text": "Mentions légales du site"
                                                                }
                                                            ]
                                                        }
                                                    ]
                                                }
                                            ]
                                        }
                                    ]
                                }
                            ]
                        },
                        {
                            "tag": "p",
                            "aria-hidden": "true"
                        }
                    ]
                }
            ]
        }
    ]
}
 
S
suppr334822
Guest
<?php

$xml = <<<XML
<?xml version="1.0" encoding="UTF-8"?>
<root>
<element>Some text.</element>
<!-- A comment. -->
<another_element>More text.</another_element>
</root>
XML;

$doc = new DOMDocument();
$doc->loadXML($xml);

$nodes = $doc->getElementsByTagName('*');

foreach ($nodes as $node) {
if ($node->nodeType == XML_COMMENT_NODE) {
echo "Comment: " . $node->nodeValue . "\n";
}
}

?>
 
WRInaute accro
Merci beaucoup site-de-voyance

Et avec : $nodes = $doc->childNodes au lieu de $nodes = $doc->getElementsByTagName('*')

Cà marche aussi ?

Les XML_COMMENT_NODE sont détectés ?

Merci beaucoup.
 
S
suppr334822
Guest
Si vous utilisez la méthode $nodes = $doc->childNodes pour récupérer tous les nœuds de l'arbre XML, cela ne récupérera que les nœuds enfants du nœud racine du document XML. Cette méthode ne récupère donc pas tous les nœuds de l'arbre, contrairement à la méthode getElementsByTagName('*').

Cependant, si le nœud racine du document XML contient des commentaires, ceux-ci seront inclus dans la liste des nœuds enfants retournés par la méthode childNodes(). Vous pouvez donc toujours détecter les nœuds de commentaire en vérifiant leur type avec la constante prédéfinie XML_COMMENT_NODE.

Voici un exemple de code qui utilise la méthode childNodes() pour parcourir les nœuds d'un document XML et afficher tous les commentaires qu'il rencontre :

<?php

$xml = <<<XML
<?xml version="1.0" encoding="UTF-8"?>
<root>
<element>Some text.</element>
<!-- A comment. -->
<another_element>More text.</another_element>
</root>
XML;

$doc = new DOMDocument();
$doc->loadXML($xml);

$nodes = $doc->childNodes;

foreach ($nodes as $node) {
if ($node->nodeType == XML_COMMENT_NODE) {
echo "Comment: " . $node->nodeValue . "\n";
}
}

?>
 
WRInaute accro
Merci beaucoup site-de-voyance

Hébé je faisais une faute de saisie.

Cà marche, mais les commentaires incluent les codes.

Et le code ci-dessous ne passe pas le check json.

Merci beaucoup de ton aide.

JSON:
{
    "tag": "html",
    "lang": "fr",
    "children": [
        {
            "tag": "head",
            "children": [
                {
                    "tag": "meta",
                    "http-equiv": "Content-Type",
                    "content": "text/html; charset=utf-8"
                },
                {
                    "tag": "link",
                    "rel": "stylesheet",
                    "type": "text/css",
                    "href": "/style_20230205_01.css"
                },
                {
                    "tag": "meta",
                    "name": "viewport",
                    "content": "width=device-width, initial-scale=1.0"
                },
                {
                    "tag": "comment",
=> erreur :  "text": "<!--[if IE]>
<meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\" />
<![endif]-->"
                },
                {
                    "tag": "comment",
                    "text": "<!--[if lt IE 9]>
<script nonce=\"G7SGzr/TplzgcrfRJ3Wr+IE19DwF3cjh\" src=\"http://github.com/aFarkas/html5shiv/blob/master/dist/html5shiv.js\" defer></script>
<![endif]-->"
                },
                {
                    "tag": "comment",
                    "text": "<!-- Matomo -->"
                },
                {
                    "tag": "script",
                    "nonce": "G7SGzr/TplzgcrfRJ3Wr+IE19DwF3cjh",
                    "text": "var _paq = window._paq = window._paq || []; /* tracker methods like \"setCustomDimension\" should be called before \"trackPageView\" */ _paq.push(['trackPageView']); _paq.push(['enableLinkTracking']); (function() {     var u=\"https://analytics.pronostics-courses.fr/\";     _paq.push(['setTrackerUrl', u+'matomo.php']);     _paq.push(['setSiteId', '1']);     _paq.push(['HeatmapSessionRecording::disable']);     var d=document, g=d.createElement('script'), s=d.getElementsByTagName('script')[0];     g.async=true; g.src=u+'matomo.js'; s.parentNode.insertBefore(g,s); })();"
                },
                {
                    "tag": "comment",
                    "text": "<!-- End Matomo Code -->"
                },
                {
                    "tag": "link",
                    "rel": "canonical",
                    "href": "https://www.pronostics-courses.fr/"
                },
                {
                    "tag": "title",
                    "text": "Statistiques et Pronostics Courses de Chevaux"
                }
            ]
        }
    ]
}
 
WRInaute accro
Voilà çà passe le test json maintenant.

Testé avec "jsonlint -s tmp.json".

J'avais un problème de tabulation.

Schtroumpf.

JSON:
{
    "tag": "html",
    "lang": "fr",
    "children": [
        {
            "tag": "head",
            "children": [
                {
                    "tag": "meta",
                    "http-equiv": "Content-Type",
                    "content": "text/html; charset=utf-8"
                },
                {
                    "tag": "link",
                    "rel": "stylesheet",
                    "type": "text/css",
                    "href": "/style_20230205_01.css"
                },
                {
                    "tag": "meta",
                    "name": "viewport",
                    "content": "width=device-width, initial-scale=1.0"
                },
                {
                    "tag": "comment",
                    "text": "<!--[if IE]> <meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\" /> <![endif]-->"
                },
                {
                    "tag": "comment",
                    "text": "<!--[if lt IE 9]> <script nonce=\"5n/6CKahTE+rKNchPof1cnWlIsB7lKUi\" src=\"http://github.com/aFarkas/html5shiv/blob/master/dist/html5shiv.js\" defer></script> <![endif]-->"
                },
                {
                    "tag": "comment",
                    "text": "<!-- Matomo -->"
                },
                {
                    "tag": "script",
                    "nonce": "5n/6CKahTE+rKNchPof1cnWlIsB7lKUi",
                    "text": "var _paq = window._paq = window._paq || [];   /* tracker methods like \"setCustomDimension\" should be called before \"trackPageView\" */   _paq.push(['trackPageView']);   _paq.push(['enableLinkTracking']);   (function() {           var u=\"https://analytics.pronostics-courses.fr/\";           _paq.push(['setTrackerUrl', u+'matomo.php']);           _paq.push(['setSiteId', '1']);           _paq.push(['HeatmapSessionRecording::disable']);           var d=document, g=d.createElement('script'), s=d.getElementsByTagName('script')[0];           g.async=true; g.src=u+'matomo.js'; s.parentNode.insertBefore(g,s);   })();"
                },
                {
                    "tag": "comment",
                    "text": "<!-- End Matomo Code -->"
                },
                {
                    "tag": "link",
                    "rel": "canonical",
                    "href": "https://www.pronostics-courses.fr/"
                },
                {
                    "tag": "title",
                    "text": "Statistiques et Pronostics Courses de Chevaux"
                },
                {
                    "tag": "meta",
                    "name": "keywords",
                    "content": "cheval, chevaux, pronostics, courses de chevaux, pronostic, pronostics courses, pronostics courses de chevaux, estimations prévisionnelles, base de données courses"
                },
                {
                    "tag": "meta",
                    "name": "description",
                    "content": "Statistiques, Pronostics et Historiques Graphiques sur les Courses de Chevaux"
                },
                {
                    "tag": "meta",
                    "name": "author",
                    "content": "Jean-Francois Ortolo"
                }
            ]
        },
        {
            "tag": "body",
            "itemscope": "",
            "itemtype": "http://schema.org/WebPage",
            "children": [
                {
                    "tag": "meta",
                    "itemprop": "description",
                    "content": "Statistiques, Pronostics et Historiques Graphiques sur les Courses de Chevaux"
                },
                {
                    "tag": "a",
                    "class": "cache",
                    "itemprop": "url",
                    "href": "https://www.pronostics-courses.fr",
                    "aria-label": "Statistiques et Pronostics sur les Courses de Chevaux"
                },
                {
                    "tag": "a",
                    "class": "cache",
                    "itemprop": "breadcrumb",
                    "href": "https://www.pronostics-courses.fr",
                    "aria-label": "Statistiques et Pronostics sur les Courses de Chevaux"
                },
                {
                    "tag": "span",
                    "itemscope": "",
                    "itemtype": "http://schema.org/Language",
                    "children": [
                        {
                            "tag": "meta",
                            "itemprop": "name",
                            "content": "French"
                        }
                    ]
                },
                {
                    "tag": "div",
                    "itemscope": "",
                    "itemtype": "http://schema.org/AboutPage",
                    "children": [
                        {
                            "tag": "div",
                            "itemprop": "author",
                            "itemscope": "",
                            "itemtype": "http://schema.org/Person",
                            "children": [
                                {
                                    "tag": "meta",
                                    "itemprop": "name",
                                    "content": "Jean-Francois Ortolo"
                                },
                                {
                                    "tag": "meta",
                                    "itemprop": "birthDate",
                                    "content": "1957-12-18"
                                },
                                {
                                    "tag": "meta",
                                    "itemprop": "nationality",
                                    "content": "French"
                                },
                                {
                                    "tag": "meta",
                                    "itemprop": "homeLocation",
                                    "content": "Paris"
                                }
                            ]
                        }
                    ]
                },
                {
                    "tag": "meta",
                    "property": "og:title",
                    "content": "Statistiques, Pronostics et Historiques Graphiques sur les Courses de Chevaux"
                },
                {
                    "tag": "meta",
                    "property": "og:type",
                    "content": "Pronostics, Pronostics et Historiques Graphiques sur les Courses de Chevaux"
                },
                {
                    "tag": "meta",
                    "property": "og:url",
                    "content": "https://www.pronostics-courses.fr/"
                },
                {
                    "tag": "p",
                    "aria-hidden": "true"
                },
                {
                    "tag": "header",
                    "class": "nav_index",
                    "children": [
                        {
                            "tag": "div",
                            "text": "Statistiques Courses de Chevaux",
                            "class": "logo"
                        }
                    ]
                },
                {
                    "tag": "br"
                },
                {
                    "tag": "div",
                    "class": "blochaut",
                    "children": [
                        {
                            "tag": "div",
                            "class": "bloc blocgauche",
                            "children": [
                                {
                                    "tag": "br"
                                },
                                {
                                    "tag": "article",
                                    "class": "nav_index",
                                    "children": [
                                        {
                                            "tag": "header",
                                            "class": "nav_index",
                                            "children": [
                                                {
                                                    "tag": "h1",
                                                    "text": "Choisissez vos courses..."
                                                }
                                            ]
                                        },
                                        {
                                            "tag": "br"
                                        },
                                        {
                                            "tag": "aside",
                                            "class": "nav_index",
                                            "children": [
                                                {
                                                    "tag": "ul",
                                                    "id": "menu",
                                                    "itemscope": "",
                                                    "itemtype": "http://schema.org/ItemList",
                                                    "children": [
                                                        {
                                                            "tag": "li",
                                                            "itemprop": "itemListElement",
                                                            "itemscope": "",
                                                            "itemtype": "http://schema.org/ListItem",
                                                            "children": [
                                                                {
                                                                    "tag": "meta",
                                                                    "itemprop": "position",
                                                                    "content": "1"
                                                                },
                                                                {
                                                                    "tag": "h2",
                                                                    "itemprop": "item",
                                                                    "itemscope": "",
                                                                    "itemtype": "http://schema.org/SiteNavigationElement",
                                                                    "children": [
                                                                        {
                                                                            "tag": "a",
                                                                            "class": "bouton bouton_gauche coul_boutons",
                                                                            "title": "Pronostics Courses Mardi 28 Mars 2023",
                                                                            "itemprop": "url",
                                                                            "href": "https://www.pronostics-courses.fr/php/courses-lendemain/new-courses.php",
                                                                            "children": [
                                                                                {
                                                                                    "tag": "span",
                                                                                    "itemprop": "description",
                                                                                    "children": [
                                                                                        {
                                                                                            "tag": "br"
                                                                                        }
                                                                                    ]
                                                                                }
                                                                            ]
                                                                        }
                                                                    ]
                                                                }
                                                            ]
                                                        },
                                                        {
                                                            "tag": "li",
                                                            "itemprop": "itemListElement",
                                                            "itemscope": "",
                                                            "itemtype": "http://schema.org/ListItem",
                                                            "children": [
                                                                {
                                                                    "tag": "meta",
                                                                    "itemprop": "position",
                                                                    "content": "2"
                                                                },
                                                                {
                                                                    "tag": "h2",
                                                                    "itemprop": "item",
                                                                    "itemscope": "",
                                                                    "itemtype": "http://schema.org/SiteNavigationElement",
                                                                    "children": [
                                                                        {
                                                                            "tag": "a",
                                                                            "class": "bouton bouton_gauche coul_boutons",
                                                                            "title": "Pronostics Courses Lundi 27 Mars 2023",
                                                                            "itemprop": "url",
                                                                            "href": "https://www.pronostics-courses.fr/php/courses-aujourdhui/new-courses.php",
                                                                            "children": [
                                                                                {
                                                                                    "tag": "span",
                                                                                    "itemprop": "description",
                                                                                    "children": [
                                                                                        {
                                                                                            "tag": "br"
                                                                                        }
                                                                                    ]
                                                                                }
                                                                            ]
                                                                        }
                                                                    ]
                                                                }
                                                            ]
                                                        },
                                                        {
                                                            "tag": "li",
                                                            "itemprop": "itemListElement",
                                                            "itemscope": "",
                                                            "itemtype": "http://schema.org/ListItem",
                                                            "children": [
                                                                {
                                                                    "tag": "meta",
                                                                    "itemprop": "position",
                                                                    "content": "3"
                                                                },
                                                                {
                                                                    "tag": "h2",
                                                                    "itemprop": "item",
                                                                    "itemscope": "",
                                                                    "itemtype": "http://schema.org/SiteNavigationElement",
                                                                    "children": [
                                                                        {
                                                                            "tag": "a",
                                                                            "class": "bouton bouton_gauche coul_boutons",
                                                                            "title": "Pronostics Courses dix derniers jours",
                                                                            "itemprop": "url",
                                                                            "href": "https://www.pronostics-courses.fr/php/courses-anciennes/old-courses.php",
                                                                            "children": [
                                                                                {
                                                                                    "tag": "span",
                                                                                    "itemprop": "description",
                                                                                    "children": [
                                                                                        {
                                                                                            "tag": "br"
                                                                                        }
                                                                                    ]
                                                                                }
                                                                            ]
                                                                        }
                                                                    ]
                                                                }
                                                            ]
                                                        }
                                                    ]
                                                }
                                            ]
                                        }
                                    ]
                                },
                                {
                                    "tag": "br"
                                },
                                {
                                    "tag": "div",
                                    "class": "tableau_liste_accueil",
                                    "itemscope": "",
                                    "itemtype": "http://schema.org/Table",
                                    "title": "Courses du Mardi 28 Mars 2023",
                                    "children": [
                                        {
                                            "tag": "meta",
                                            "itemprop": "name",
                                            "content": "navigation_menu"
                                        },
                                        {
                                            "tag": "span",
                                            "text": "Courses du  Mardi 28 Mars 2023",
                                            "class": "coul_listecourses",
                                            "itemprop": "description"
                                        },
                                        {
                                            "tag": "article",
                                            "class": "liste",
                                            "children": [
                                                {
                                                    "tag": "header",
                                                    "class": "liste coul_reunions",
                                                    "children": [
                                                        {
                                                            "tag": "nav",
                                                            "text": "R1",
                                                            "class": "num_reunion",
                                                            "itemprop": "description"
                                                        },
                                                        {
                                                            "tag": "h2",
                                                            "text": "SAINT-CLOUD",
                                                            "class": "nom_reunion",
                                                            "itemprop": "name"
                                                        }
                                                    ]
                                                },
                                                {
                                                    "tag": "a",
                                                    "class": "liste",
                                                    "href": "https://www.pronostics-courses.fr/php/courses-lendemain/pronostics-courses-1-1.html",
                                                    "itemprop": "url",
                                                    "title": "Prix du Grand Morin",
                                                    "children": [
                                                        {
                                                            "tag": "aside",
                                                            "class": "liste first",
                                                            "children": [
                                                                {
                                                                    "tag": "nav",
                                                                    "class": "num_course",
                                                                    "children": [
                                                                        {
                                                                            "tag": "meta",
                                                                            "itemprop": "name",
                                                                            "content": "Prix du Grand Morin"
                                                                        },
                                                                        {
                                                                            "tag": "span",
                                                                            "text": "C1 ",
                                                                            "itemprop": "description"
                                                                        }
                                                                    ]
                                                                },
                                                                {
                                                                    "tag": "nav",
                                                                    "class": "nom_course",
                                                                    "children": [
                                                                        {
                                                                            "tag": "span",
                                                                            "text": "Prix du Grand Morin",
                                                                            "class": "nom_course",
                                                                            "itemprop": "name"
                                                                        }
                                                                    ]
                                                                },
                                                                {
                                                                    "tag": "div",
                                                                    "class": "pari",
                                                                    "itemprop": "about",
                                                                    "children": [
                                                                        {
                                                                            "tag": "div",
                                                                            "class": "parallelogramme logo_2sur4 paris_none",
                                                                            "role": "img",
                                                                            "aria-label": "2sur4",
                                                                            "title": "2sur4"
                                                                        },
                                                                        {
                                                                            "tag": "div",
                                                                            "class": "parallelogramme logo_multi paris_none",
                                                                            "role": "img",
                                                                            "aria-label": "Multi",
                                                                            "title": "Multi"
                                                                        },
                                                                        {
                                                                            "tag": "div",
                                                                            "class": "parallelogramme logo_tierce paris_plain",
                                                                            "role": "img",
                                                                            "aria-label": "Tiercé",
                                                                            "title": "Tiercé"
                                                                        },
                                                                        {
                                                                            "tag": "div",
                                                                            "class": "parallelogramme logo_quarte paris_plain",
                                                                            "role": "img",
                                                                            "aria-label": "Quarté",
                                                                            "title": "Quarté"
                                                                        },
                                                                        {
                                                                            "tag": "div",
                                                                            "class": "parallelogramme logo_quinte paris_plain",
                                                                            "role": "img",
                                                                            "aria-label": "Quinté",
                                                                            "title": "Quinté"
                                                                        }
                                                                    ]
                                                                },
                                                                {
                                                                    "tag": "nav",
                                                                    "class": "heure",
                                                                    "children": [
                                                                        {
                                                                            "tag": "b",
                                                                            "text": "13h50"
                                                                        }
                                                                    ]
                                                                },
                                                                {
                                                                    "tag": "nav",
                                                                    "class": "partants",
                                                                    "children": [
                                                                        {
                                                                            "tag": "b",
                                                                            "text": "18"
                                                                        },
                                                                        {
                                                                            "tag": "br"
                                                                        }
                                                                    ]
                                                                },
                                                                {
                                                                    "tag": "nav",
                                                                    "text": "Galop - Handicap de catégorie - Classe 2 - 31 000 € -  1600  m",
                                                                    "class": "liste"
                                                                },
                                                                {
                                                                    "tag": "nav",
                                                                    "text": "Première épreuve - Corde à gauche - Réf:+28",
                                                                    "class": "liste"
                                                                }
                                                            ]
                                                        }
                                                    ]
                                                },
                                                {
                                                    "tag": "a",
                                                    "class": "liste",
                                                    "href": "https://www.pronostics-courses.fr/php/courses-lendemain/pronostics-courses-1-7.html",
                                                    "itemprop": "url",
                                                    "title": "Prix de Provence",
                                                    "children": [
                                                        {
                                                            "tag": "aside",
                                                            "class": "liste last",
                                                            "children": [
                                                                {
                                                                    "tag": "nav",
                                                                    "class": "num_course",
                                                                    "children": [
                                                                        {
                                                                            "tag": "meta",
                                                                            "itemprop": "name",
                                                                            "content": "Prix de Provence"
                                                                        },
                                                                        {
                                                                            "tag": "span",
                                                                            "text": "C7 ",
                                                                            "itemprop": "description"
                                                                        }
                                                                    ]
                                                                },
                                                                {
                                                                    "tag": "nav",
                                                                    "class": "nom_course",
                                                                    "children": [
                                                                        {
                                                                            "tag": "span",
                                                                            "text": "Prix de Provence",
                                                                            "class": "nom_course",
                                                                            "itemprop": "name"
                                                                        }
                                                                    ]
                                                                },
                                                                {
                                                                    "tag": "div",
                                                                    "class": "pari",
                                                                    "itemprop": "about",
                                                                    "children": [
                                                                        {
                                                                            "tag": "div",
                                                                            "class": "parallelogramme logo_simple paris_none",
                                                                            "role": "img",
                                                                            "aria-label": "Simple",
                                                                            "title": "Simple"
                                                                        },
                                                                        {
                                                                            "tag": "div",
                                                                            "class": "parallelogramme logo_2sur4 paris_none",
                                                                            "role": "img",
                                                                            "aria-label": "2sur4",
                                                                            "title": "2sur4"
                                                                        },
                                                                        {
                                                                            "tag": "div",
                                                                            "class": "parallelogramme logo_couple paris_none",
                                                                            "role": "img",
                                                                            "aria-label": "Couplé",
                                                                            "title": "Couplé"
                                                                        },
                                                                        {
                                                                            "tag": "div",
                                                                            "class": "parallelogramme logo_couple_ordre paris_none",
                                                                            "role": "img",
                                                                            "aria-label": "Couplé Ordre",
                                                                            "title": "Couplé Ordre"
                                                                        },
                                                                        {
                                                                            "tag": "div",
                                                                            "class": "parallelogramme logo_trio paris_plain",
                                                                            "role": "img",
                                                                            "aria-label": "Trio",
                                                                            "title": "Trio"
                                                                        },
                                                                        {
                                                                            "tag": "div",
                                                                            "class": "parallelogramme logo_mini_multi paris_plain",
                                                                            "role": "img",
                                                                            "aria-label": "Mini Multi",
                                                                            "title": "Mini Multi"
                                                                        },
                                                                        {
                                                                            "tag": "div",
                                                                            "class": "parallelogramme logo_pick5 paris_plain",
                                                                            "role": "img",
                                                                            "aria-label": "Pick5",
                                                                            "title": "Pick5"
                                                                        }
                                                                    ]
                                                                },
                                                                {
                                                                    "tag": "nav",
                                                                    "class": "heure",
                                                                    "children": [
                                                                        {
                                                                            "tag": "b",
                                                                            "text": "17h20"
                                                                        }
                                                                    ]
                                                                },
                                                                {
                                                                    "tag": "nav",
                                                                    "class": "partants",
                                                                    "children": [
                                                                        {
                                                                            "tag": "b",
                                                                            "text": "11"
                                                                        },
                                                                        {
                                                                            "tag": "br"
                                                                        }
                                                                    ]
                                                                },
                                                                {
                                                                    "tag": "nav",
                                                                    "text": "Galop - Handicap divisé - Classe 2 - 53 000 € -  2400  m",
                                                                    "class": "liste"
                                                                },
                                                                {
                                                                    "tag": "nav",
                                                                    "text": "Première épreuve - Corde à gauche - Réf:+20,5",
                                                                    "class": "liste"
                                                                }
                                                            ]
                                                        }
                                                    ]
                                                }
                                            ]
                                        }
                                    ]
                                },
                                {
                                    "tag": "div",
                                    "class": "tableau_liste_accueil",
                                    "itemscope": "",
                                    "itemtype": "http://schema.org/Table",
                                    "children": [
                                        {
                                            "tag": "meta",
                                            "itemprop": "name",
                                            "content": "navigation_menu"
                                        },
                                        {
                                            "tag": "article",
                                            "class": "liste",
                                            "children": [
                                                {
                                                    "tag": "header",
                                                    "class": "liste coul_reunions",
                                                    "children": [
                                                        {
                                                            "tag": "nav",
                                                            "text": "R4",
                                                            "class": "num_reunion",
                                                            "itemprop": "description"
                                                        },
                                                        {
                                                            "tag": "h2",
                                                            "text": "ENGHIEN",
                                                            "class": "nom_reunion",
                                                            "itemprop": "name"
                                                        }
                                                    ]
                                                },
                                                {
                                                    "tag": "a",
                                                    "class": "liste",
                                                    "href": "https://www.pronostics-courses.fr/php/courses-lendemain/pronostics-courses-4-4.html",
                                                    "itemprop": "url",
                                                    "title": "Prix du Pont de Grenelle",
                                                    "children": [
                                                        {
                                                            "tag": "aside",
                                                            "class": "liste one",
                                                            "children": [
                                                                {
                                                                    "tag": "nav",
                                                                    "class": "num_course",
                                                                    "children": [
                                                                        {
                                                                            "tag": "meta",
                                                                            "itemprop": "name",
                                                                            "content": "Prix du Pont de Grenelle"
                                                                        },
                                                                        {
                                                                            "tag": "span",
                                                                            "text": "C4 ",
                                                                            "itemprop": "description"
                                                                        }
                                                                    ]
                                                                },
                                                                {
                                                                    "tag": "nav",
                                                                    "class": "nom_course",
                                                                    "children": [
                                                                        {
                                                                            "tag": "span",
                                                                            "text": "Prix du Pont de Grenelle",
                                                                            "class": "nom_course",
                                                                            "itemprop": "name"
                                                                        }
                                                                    ]
                                                                },
                                                                {
                                                                    "tag": "div",
                                                                    "class": "pari",
                                                                    "itemprop": "about",
                                                                    "children": [
                                                                        {
                                                                            "tag": "div",
                                                                            "class": "parallelogramme logo_simple paris_none",
                                                                            "role": "img",
                                                                            "aria-label": "Simple",
                                                                            "title": "Simple"
                                                                        },
                                                                        {
                                                                            "tag": "div",
                                                                            "class": "parallelogramme logo_2sur4 paris_none",
                                                                            "role": "img",
                                                                            "aria-label": "2sur4",
                                                                            "title": "2sur4"
                                                                        },
                                                                        {
                                                                            "tag": "div",
                                                                            "class": "parallelogramme logo_couple paris_none",
                                                                            "role": "img",
                                                                            "aria-label": "Couplé",
                                                                            "title": "Couplé"
                                                                        },
                                                                        {
                                                                            "tag": "div",
                                                                            "class": "parallelogramme logo_couple_ordre paris_none",
                                                                            "role": "img",
                                                                            "aria-label": "Couplé Ordre",
                                                                            "title": "Couplé Ordre"
                                                                        },
                                                                        {
                                                                            "tag": "div",
                                                                            "class": "parallelogramme logo_trio paris_plain",
                                                                            "role": "img",
                                                                            "aria-label": "Trio",
                                                                            "title": "Trio"
                                                                        },
                                                                        {
                                                                            "tag": "div",
                                                                            "class": "parallelogramme logo_multi paris_plain",
                                                                            "role": "img",
                                                                            "aria-label": "Multi",
                                                                            "title": "Multi"
                                                                        },
                                                                        {
                                                                            "tag": "div",
                                                                            "class": "parallelogramme logo_pick5 paris_plain",
                                                                            "role": "img",
                                                                            "aria-label": "Pick5",
                                                                            "title": "Pick5"
                                                                        }
                                                                    ]
                                                                },
                                                                {
                                                                    "tag": "nav",
                                                                    "class": "heure",
                                                                    "children": [
                                                                        {
                                                                            "tag": "b",
                                                                            "text": "18h15"
                                                                        }
                                                                    ]
                                                                },
                                                                {
                                                                    "tag": "nav",
                                                                    "class": "partants",
                                                                    "children": [
                                                                        {
                                                                            "tag": "b",
                                                                            "text": "16"
                                                                        },
                                                                        {
                                                                            "tag": "br"
                                                                        }
                                                                    ]
                                                                },
                                                                {
                                                                    "tag": "nav",
                                                                    "text": "Trot - Course Européenne - Course C - 68 000 € -  2250  m",
                                                                    "class": "liste"
                                                                },
                                                                {
                                                                    "tag": "nav",
                                                                    "text": "Corde à gauche",
                                                                    "class": "liste"
                                                                }
                                                            ]
                                                        }
                                                    ]
                                                }
                                            ]
                                        }
                                    ]
                                },
                                {
                                    "tag": "br"
                                }
                            ]
                        },
                        {
                            "tag": "div",
                            "class": "bloc blocdroite",
                            "children": [
                                {
                                    "tag": "br"
                                },
                                {
                                    "tag": "article",
                                    "class": "nav_index",
                                    "children": [
                                        {
                                            "tag": "header",
                                            "class": "nav_index",
                                            "children": [
                                                {
                                                    "tag": "div",
                                                    "class": "bloctextehaut",
                                                    "children": [
                                                        {
                                                            "tag": "h2",
                                                            "text": "Bonjour Mesdames et Messieurs"
                                                        }
                                                    ]
                                                }
                                            ]
                                        },
                                        {
                                            "tag": "aside",
                                            "class": "nav_index",
                                            "children": [
                                                {
                                                    "tag": "ul",
                                                    "class": "bloctextebas",
                                                    "itemscope": "",
                                                    "itemtype": "http://schema.org/ItemList",
                                                    "children": [
                                                        {
                                                            "tag": "li",
                                                            "itemprop": "itemListElement",
                                                            "itemscope": "",
                                                            "itemtype": "http://schema.org/ListItem",
                                                            "children": [
                                                                {
                                                                    "tag": "meta",
                                                                    "itemprop": "position",
                                                                    "content": "1"
                                                                },
                                                                {
                                                                    "tag": "div",
                                                                    "text": "Ce site est destiné à donner des Statistiques Prévisionnelles, des Pronostics et des Historiques Graphiques sur les Courses du lendemain ou de l'après-midi :",
                                                                    "class": "text"
                                                                },
                                                                {
                                                                    "tag": "h3",
                                                                    "itemprop": "item",
                                                                    "itemscope": "",
                                                                    "itemtype": "http://schema.org/SiteNavigationElement",
                                                                    "children": [
                                                                        {
                                                                            "tag": "a",
                                                                            "class": "bouton bouton_droit coul_boutons",
                                                                            "title": "Pronostics Mardi 28 Mars 2023",
                                                                            "itemprop": "url",
                                                                            "href": "https://www.pronostics-courses.fr/php/courses-lendemain/new-courses.php",
                                                                            "children": [
                                                                                {
                                                                                    "tag": "span",
                                                                                    "text": "Pronostics Mardi 28 Mars 2023",
                                                                                    "itemprop": "description"
                                                                                }
                                                                            ]
                                                                        }
                                                                    ]
                                                                }
                                                            ]
                                                        },
                                                        {
                                                            "tag": "li",
                                                            "itemprop": "itemListElement",
                                                            "itemscope": "",
                                                            "itemtype": "http://schema.org/ListItem",
                                                            "children": [
                                                                {
                                                                    "tag": "meta",
                                                                    "itemprop": "position",
                                                                    "content": "2"
                                                                },
                                                                {
                                                                    "tag": "div",
                                                                    "class": "text",
                                                                    "les": "",
                                                                    "courses": "",
                                                                    "du": "",
                                                                    "soir": "",
                                                                    "ou": "",
                                                                    "de": "",
                                                                    "la": "",
                                                                    "veille": "",
                                                                    ":": "",
                                                                    "children": [
                                                                        {
                                                                            "tag": "h3",
                                                                            "itemprop": "item",
                                                                            "itemscope": "",
                                                                            "itemtype": "http://schema.org/SiteNavigationElement",
                                                                            "children": [
                                                                                {
                                                                                    "tag": "a",
                                                                                    "class": "bouton bouton_droit coul_boutons",
                                                                                    "title": "Pronostics Lundi 27 Mars 2023",
                                                                                    "itemprop": "url",
                                                                                    "href": "https://www.pronostics-courses.fr/php/courses-aujourdhui/new-courses.php",
                                                                                    "children": [
                                                                                        {
                                                                                            "tag": "span",
                                                                                            "text": "Pronostics Lundi 27 Mars 2023",
                                                                                            "itemprop": "description"
                                                                                        }
                                                                                    ]
                                                                                }
                                                                            ]
                                                                        },
                                                                        {
                                                                            "tag": "li",
                                                                            "itemprop": "itemListElement",
                                                                            "itemscope": "",
                                                                            "itemtype": "http://schema.org/ListItem",
                                                                            "children": [
                                                                                {
                                                                                    "tag": "meta",
                                                                                    "itemprop": "position",
                                                                                    "content": "3"
                                                                                },
                                                                                {
                                                                                    "tag": "div",
                                                                                    "text": ", ou sur les Courses passées :",
                                                                                    "class": "text"
                                                                                },
                                                                                {
                                                                                    "tag": "div",
                                                                                    "id": "calendar",
                                                                                    "children": [
                                                                                        {
                                                                                            "tag": "table",
                                                                                            "class": "calendrier coul_boutons",
                                                                                            "children": [
                                                                                                {
                                                                                                    "tag": "tbody",
                                                                                                    "children": [
                                                                                                        {
                                                                                                            "tag": "tr",
                                                                                                            "children": [
                                                                                                                {
                                                                                                                    "tag": "th",
                                                                                                                    "text": "27 Mars 2023",
                                                                                                                    "colspan": "7"
                                                                                                                }
                                                                                                            ]
                                                                                                        },
                                                                                                        {
                                                                                                            "tag": "tr",
                                                                                                            "children": [
                                                                                                                {
                                                                                                                    "tag": "th",
                                                                                                                    "colspan": "7",
                                                                                                                    "children": [
                                                                                                                        {
                                                                                                                            "tag": "form",
                                                                                                                            "action": "https://www.pronostics-courses.fr",
                                                                                                                            "method": "post",
                                                                                                                            "children": [
                                                                                                                                {
                                                                                                                                    "tag": "input",
                                                                                                                                    "type": "hidden",
                                                                                                                                    "name": "day",
                                                                                                                                    "id": "day",
                                                                                                                                    "value": "27"
                                                                                                                                },
                                                                                                                                {
                                                                                                                                    "tag": "input",
                                                                                                                                    "type": "hidden",
                                                                                                                                    "name": "month",
                                                                                                                                    "id": "month",
                                                                                                                                    "value": "3"
                                                                                                                                },
                                                                                                                                {
                                                                                                                                    "tag": "input",
                                                                                                                                    "type": "hidden",
                                                                                                                                    "name": "year",
                                                                                                                                    "id": "year",
                                                                                                                                    "value": "2022"
                                                                                                                                },
                                                                                                                                {
                                                                                                                                    "tag": "input",
                                                                                                                                    "type": "submit",
                                                                                                                                    "value": "<<"
                                                                                                                                }
                                                                                                                            ]
                                                                                                                        },
                                                                                                                        {
                                                                                                                            "tag": "form",
                                                                                                                            "action": "https://www.pronostics-courses.fr",
                                                                                                                            "method": "post",
                                                                                                                            "children": [
                                                                                                                                {
                                                                                                                                    "tag": "input",
                                                                                                                                    "type": "hidden",
                                                                                                                                    "name": "day",
                                                                                                                                    "id": "day",
                                                                                                                                    "value": "27"
                                                                                                                                },
                                                                                                                                {
                                                                                                                                    "tag": "input",
                                                                                                                                    "type": "hidden",
                                                                                                                                    "name": "month",
                                                                                                                                    "id": "month",
                                                                                                                                    "value": "2"
                                                                                                                                },
                                                                                                                                {
                                                                                                                                    "tag": "input",
                                                                                                                                    "type": "hidden",
                                                                                                                                    "name": "year",
                                                                                                                                    "id": "year",
                                                                                                                                    "value": "2023"
                                                                                                                                },
                                                                                                                                {
                                                                                                                                    "tag": "input",
                                                                                                                                    "type": "submit",
                                                                                                                                    "value": "<"
                                                                                                                                }
                                                                                                                            ]
                                                                                                                        },
                                                                                                                        {
                                                                                                                            "tag": "button",
                                                                                                                            "text": ">",
                                                                                                                            "class": "disabled"
                                                                                                                        },
                                                                                                                        {
                                                                                                                            "tag": "button",
                                                                                                                            "text": ">>",
                                                                                                                            "class": "disabled"
                                                                                                                        }
                                                                                                                    ]
                                                                                                                }
                                                                                                            ]
                                                                                                        },
                                                                                                        {
                                                                                                            "tag": "tr",
                                                                                                            "children": [
                                                                                                                {
                                                                                                                    "tag": "th",
                                                                                                                    "text": "Dim"
                                                                                                                },
                                                                                                                {
                                                                                                                    "tag": "th",
                                                                                                                    "text": "Lun"
                                                                                                                },
                                                                                                                {
                                                                                                                    "tag": "th",
                                                                                                                    "text": "Mar"
                                                                                                                },
                                                                                                                {
                                                                                                                    "tag": "th",
                                                                                                                    "text": "Mer"
                                                                                                                },
                                                                                                                {
                                                                                                                    "tag": "th",
                                                                                                                    "text": "Jeu"
                                                                                                                },
                                                                                                                {
                                                                                                                    "tag": "th",
                                                                                                                    "text": "Ven"
                                                                                                                },
                                                                                                                {
                                                                                                                    "tag": "th",
                                                                                                                    "text": "Sam"
                                                                                                                }
                                                                                                            ]
                                                                                                        },
                                                                                                        {
                                                                                                            "tag": "tr",
                                                                                                            "children": [
                                                                                                                {
                                                                                                                    "tag": "td"
                                                                                                                },
                                                                                                                {
                                                                                                                    "tag": "td"
                                                                                                                },
                                                                                                                {
                                                                                                                    "tag": "td"
                                                                                                                },
                                                                                                                {
                                                                                                                    "tag": "td",
                                                                                                                    "children": [
                                                                                                                        {
                                                                                                                            "tag": "a",
                                                                                                                            "text": "1",
                                                                                                                            "href": "https://www.pronostics-courses.fr/php/courses-anciennes/liste-old-courses-1-3-2023.html"
                                                                                                                        }
                                                                                                                    ]
                                                                                                                },
                                                                                                                {
                                                                                                                    "tag": "td",
                                                                                                                    "children": [
                                                                                                                        {
                                                                                                                            "tag": "a",
                                                                                                                            "text": "2",
                                                                                                                            "href": "https://www.pronostics-courses.fr/php/courses-anciennes/liste-old-courses-2-3-2023.html"
                                                                                                                        }
                                                                                                                    ]
                                                                                                                },
                                                                                                                {
                                                                                                                    "tag": "td",
                                                                                                                    "children": [
                                                                                                                        {
                                                                                                                            "tag": "a",
                                                                                                                            "text": "3",
                                                                                                                            "href": "https://www.pronostics-courses.fr/php/courses-anciennes/liste-old-courses-3-3-2023.html"
                                                                                                                        }
                                                                                                                    ]
                                                                                                                },
                                                                                                                {
                                                                                                                    "tag": "td",
                                                                                                                    "children": [
                                                                                                                        {
                                                                                                                            "tag": "a",
                                                                                                                            "text": "4",
                                                                                                                            "href": "https://www.pronostics-courses.fr/php/courses-anciennes/liste-old-courses-4-3-2023.html"
                                                                                                                        }
                                                                                                                    ]
                                                                                                                }
                                                                                                            ]
                                                                                                        },
                                                                                                        {
                                                                                                            "tag": "tr",
                                                                                                            "children": [
                                                                                                                {
                                                                                                                    "tag": "td",
                                                                                                                    "children": [
                                                                                                                        {
                                                                                                                            "tag": "a",
                                                                                                                            "text": "5",
                                                                                                                            "href": "https://www.pronostics-courses.fr/php/courses-anciennes/liste-old-courses-5-3-2023.html"
                                                                                                                        }
                                                                                                                    ]
                                                                                                                },
                                                                                                                {
                                                                                                                    "tag": "td",
                                                                                                                    "children": [
                                                                                                                        {
                                                                                                                            "tag": "a",
                                                                                                                            "text": "6",
                                                                                                                            "href": "https://www.pronostics-courses.fr/php/courses-anciennes/liste-old-courses-6-3-2023.html"
                                                                                                                        }
                                                                                                                    ]
                                                                                                                },
                                                                                                                {
                                                                                                                    "tag": "td",
                                                                                                                    "children": [
                                                                                                                        {
                                                                                                                            "tag": "a",
                                                                                                                            "text": "7",
                                                                                                                            "href": "https://www.pronostics-courses.fr/php/courses-anciennes/liste-old-courses-7-3-2023.html"
                                                                                                                        }
                                                                                                                    ]
                                                                                                                },
                                                                                                                {
                                                                                                                    "tag": "td",
                                                                                                                    "children": [
                                                                                                                        {
                                                                                                                            "tag": "a",
                                                                                                                            "text": "8",
                                                                                                                            "href": "https://www.pronostics-courses.fr/php/courses-anciennes/liste-old-courses-8-3-2023.html"
                                                                                                                        }
                                                                                                                    ]
                                                                                                                },
                                                                                                                {
                                                                                                                    "tag": "td",
                                                                                                                    "children": [
                                                                                                                        {
                                                                                                                            "tag": "a",
                                                                                                                            "text": "9",
                                                                                                                            "href": "https://www.pronostics-courses.fr/php/courses-anciennes/liste-old-courses-9-3-2023.html"
                                                                                                                        }
                                                                                                                    ]
                                                                                                                },
                                                                                                                {
                                                                                                                    "tag": "td",
                                                                                                                    "children": [
                                                                                                                        {
                                                                                                                            "tag": "a",
                                                                                                                            "text": "10",
                                                                                                                            "href": "https://www.pronostics-courses.fr/php/courses-anciennes/liste-old-courses-10-3-2023.html"
                                                                                                                        }
                                                                                                                    ]
                                                                                                                },
                                                                                                                {
                                                                                                                    "tag": "td",
                                                                                                                    "children": [
                                                                                                                        {
                                                                                                                            "tag": "a",
                                                                                                                            "text": "11",
                                                                                                                            "href": "https://www.pronostics-courses.fr/php/courses-anciennes/liste-old-courses-11-3-2023.html"
                                                                                                                        }
                                                                                                                    ]
                                                                                                                }
                                                                                                            ]
                                                                                                        },
                                                                                                        {
                                                                                                            "tag": "tr",
                                                                                                            "children": [
                                                                                                                {
                                                                                                                    "tag": "td",
                                                                                                                    "children": [
                                                                                                                        {
                                                                                                                            "tag": "a",
                                                                                                                            "text": "12",
                                                                                                                            "href": "https://www.pronostics-courses.fr/php/courses-anciennes/liste-old-courses-12-3-2023.html"
                                                                                                                        }
                                                                                                                    ]
                                                                                                                },
                                                                                                                {
                                                                                                                    "tag": "td",
                                                                                                                    "children": [
                                                                                                                        {
                                                                                                                            "tag": "a",
                                                                                                                            "text": "13",
                                                                                                                            "href": "https://www.pronostics-courses.fr/php/courses-anciennes/liste-old-courses-13-3-2023.html"
                                                                                                                        }
                                                                                                                    ]
                                                                                                                },
                                                                                                                {
                                                                                                                    "tag": "td",
                                                                                                                    "children": [
                                                                                                                        {
                                                                                                                            "tag": "a",
                                                                                                                            "text": "14",
                                                                                                                            "href": "https://www.pronostics-courses.fr/php/courses-anciennes/liste-old-courses-14-3-2023.html"
                                                                                                                        }
                                                                                                                    ]
                                                                                                                },
                                                                                                                {
                                                                                                                    "tag": "td",
                                                                                                                    "children": [
                                                                                                                        {
                                                                                                                            "tag": "a",
                                                                                                                            "text": "15",
                                                                                                                            "href": "https://www.pronostics-courses.fr/php/courses-anciennes/liste-old-courses-15-3-2023.html"
                                                                                                                        }
                                                                                                                    ]
                                                                                                                },
                                                                                                                {
                                                                                                                    "tag": "td",
                                                                                                                    "children": [
                                                                                                                        {
                                                                                                                            "tag": "a",
                                                                                                                            "text": "16",
                                                                                                                            "href": "https://www.pronostics-courses.fr/php/courses-anciennes/liste-old-courses-16-3-2023.html"
                                                                                                                        }
                                                                                                                    ]
                                                                                                                },
                                                                                                                {
                                                                                                                    "tag": "td",
                                                                                                                    "children": [
                                                                                                                        {
                                                                                                                            "tag": "a",
                                                                                                                            "text": "17",
                                                                                                                            "href": "https://www.pronostics-courses.fr/php/courses-anciennes/liste-old-courses-17-3-2023.html"
                                                                                                                        }
                                                                                                                    ]
                                                                                                                },
                                                                                                                {
                                                                                                                    "tag": "td",
                                                                                                                    "children": [
                                                                                                                        {
                                                                                                                            "tag": "a",
                                                                                                                            "text": "18",
                                                                                                                            "href": "https://www.pronostics-courses.fr/php/courses-anciennes/liste-old-courses-18-3-2023.html"
                                                                                                                        }
                                                                                                                    ]
                                                                                                                }
                                                                                                            ]
                                                                                                        },
                                                                                                        {
                                                                                                            "tag": "tr",
                                                                                                            "children": [
                                                                                                                {
                                                                                                                    "tag": "td",
                                                                                                                    "children": [
                                                                                                                        {
                                                                                                                            "tag": "a",
                                                                                                                            "text": "19",
                                                                                                                            "href": "https://www.pronostics-courses.fr/php/courses-anciennes/liste-old-courses-19-3-2023.html"
                                                                                                                        }
                                                                                                                    ]
                                                                                                                },
                                                                                                                {
                                                                                                                    "tag": "td",
                                                                                                                    "children": [
                                                                                                                        {
                                                                                                                            "tag": "a",
                                                                                                                            "text": "20",
                                                                                                                            "href": "https://www.pronostics-courses.fr/php/courses-anciennes/liste-old-courses-20-3-2023.html"
                                                                                                                        }
                                                                                                                    ]
                                                                                                                },
                                                                                                                {
                                                                                                                    "tag": "td",
                                                                                                                    "children": [
                                                                                                                        {
                                                                                                                            "tag": "a",
                                                                                                                            "text": "21",
                                                                                                                            "href": "https://www.pronostics-courses.fr/php/courses-anciennes/liste-old-courses-21-3-2023.html"
                                                                                                                        }
                                                                                                                    ]
                                                                                                                },
                                                                                                                {
                                                                                                                    "tag": "td",
                                                                                                                    "children": [
                                                                                                                        {
                                                                                                                            "tag": "a",
                                                                                                                            "text": "22",
                                                                                                                            "href": "https://www.pronostics-courses.fr/php/courses-anciennes/liste-old-courses-22-3-2023.html"
                                                                                                                        }
                                                                                                                    ]
                                                                                                                },
                                                                                                                {
                                                                                                                    "tag": "td",
                                                                                                                    "children": [
                                                                                                                        {
                                                                                                                            "tag": "a",
                                                                                                                            "text": "23",
                                                                                                                            "href": "https://www.pronostics-courses.fr/php/courses-anciennes/liste-old-courses-23-3-2023.html"
                                                                                                                        }
                                                                                                                    ]
                                                                                                                },
                                                                                                                {
                                                                                                                    "tag": "td",
                                                                                                                    "children": [
                                                                                                                        {
                                                                                                                            "tag": "a",
                                                                                                                            "text": "24",
                                                                                                                            "href": "https://www.pronostics-courses.fr/php/courses-anciennes/liste-old-courses-24-3-2023.html"
                                                                                                                        }
                                                                                                                    ]
                                                                                                                },
                                                                                                                {
                                                                                                                    "tag": "td",
                                                                                                                    "children": [
                                                                                                                        {
                                                                                                                            "tag": "a",
                                                                                                                            "text": "25",
                                                                                                                            "href": "https://www.pronostics-courses.fr/php/courses-anciennes/liste-old-courses-25-3-2023.html"
                                                                                                                        }
                                                                                                                    ]
                                                                                                                }
                                                                                                            ]
                                                                                                        },
                                                                                                        {
                                                                                                            "tag": "tr",
                                                                                                            "children": [
                                                                                                                {
                                                                                                                    "tag": "td",
                                                                                                                    "children": [
                                                                                                                        {
                                                                                                                            "tag": "a",
                                                                                                                            "text": "26",
                                                                                                                            "href": "https://www.pronostics-courses.fr/php/courses-anciennes/liste-old-courses-26-3-2023.html"
                                                                                                                        }
                                                                                                                    ]
                                                                                                                },
                                                                                                                {
                                                                                                                    "tag": "td",
                                                                                                                    "text": "27",
                                                                                                                    "class": "aujourdhui"
                                                                                                                },
                                                                                                                {
                                                                                                                    "tag": "td",
                                                                                                                    "text": "28",
                                                                                                                    "class": "disabled"
                                                                                                                },
                                                                                                                {
                                                                                                                    "tag": "td",
                                                                                                                    "text": "29",
                                                                                                                    "class": "disabled"
                                                                                                                },
                                                                                                                {
                                                                                                                    "tag": "td",
                                                                                                                    "text": "30",
                                                                                                                    "class": "disabled"
                                                                                                                },
                                                                                                                {
                                                                                                                    "tag": "td",
                                                                                                                    "text": "31",
                                                                                                                    "class": "disabled"
                                                                                                                },
                                                                                                                {
                                                                                                                    "tag": "td"
                                                                                                                }
                                                                                                            ]
                                                                                                        }
                                                                                                    ]
                                                                                                }
                                                                                            ]
                                                                                        }
                                                                                    ]
                                                                                }
                                                                            ]
                                                                        },
                                                                        {
                                                                            "tag": "p"
                                                                        },
                                                                        {
                                                                            "tag": "article",
                                                                            "class": "nav_index",
                                                                            "children": [
                                                                                {
                                                                                    "tag": "div",
                                                                                    "text": "Les Pronostics de mon site sont produits automatiquement et  exclusivement par des calculs statistiques dont les données brutes proviennent de la Base de Données contenant les Arrivées des Courses de Janvier 2010 jusqu'à la date d'hier. ",
                                                                                    "class": "text"
                                                                                },
                                                                                {
                                                                                    "tag": "p"
                                                                                },
                                                                                {
                                                                                    "tag": "div",
                                                                                    "class": "text",
                                                                                    "children": [
                                                                                        {
                                                                                            "tag": "span",
                                                                                            "itemprop": "item",
                                                                                            "itemscope": "",
                                                                                            "itemtype": "http://schema.org/SiteNavigationElement",
                                                                                            "children": [
                                                                                                {
                                                                                                    "tag": "a",
                                                                                                    "class": "bouton coul_boutons",
                                                                                                    "href": "https://www.pronostics-courses.fr/php/courses-anciennes/mode_demploi.html",
                                                                                                    "title": "Contact Webmaster",
                                                                                                    "itemprop": "url",
                                                                                                    "children": [
                                                                                                        {
                                                                                                            "tag": "span",
                                                                                                            "text": "Méthode d'Utilisation des Statistiques",
                                                                                                            "itemprop": "description"
                                                                                                        }
                                                                                                    ]
                                                                                                }
                                                                                            ]
                                                                                        }
                                                                                    ]
                                                                                },
                                                                                {
                                                                                    "tag": "p"
                                                                                },
                                                                                {
                                                                                    "tag": "div",
                                                                                    "text": "Vous pouvez évaluer le niveau de justesse de mes Pronostics, en comparant les Estimations Statistiques, avant et après les Courses. Les Pronostics, dérivés des statistiques, sont rigoureusement identiques, à ceux figurant la veille des Courses.",
                                                                                    "class": "text"
                                                                                },
                                                                                {
                                                                                    "tag": "p"
                                                                                },
                                                                                {
                                                                                    "tag": "div",
                                                                                    "class": "text",
                                                                                    "children": [
                                                                                        {
                                                                                            "tag": "a",
                                                                                            "class": "bouton coul_boutons",
                                                                                            "href": "http://www.lescourses.com/",
                                                                                            "title": "Mon site partenaire : LesCourses.com",
                                                                                            "children": [
                                                                                                {
                                                                                                    "tag": "span",
                                                                                                    "text": "LesCourses.com"
                                                                                                }
                                                                                            ]
                                                                                        }
                                                                                    ]
                                                                                },
                                                                                {
                                                                                    "tag": "p"
                                                                                },
                                                                                {
                                                                                    "tag": "div",
                                                                                    "class": "text",
                                                                                    "children": [
                                                                                        {
                                                                                            "tag": "a",
                                                                                            "class": "bouton coul_boutons",
                                                                                            "href": "http://www.lescourses.com/",
                                                                                            "title": "Mon site partenaire : LesCourses.com",
                                                                                            "children": [
                                                                                                {
                                                                                                    "tag": "span",
                                                                                                    "text": "LesCourses.com"
                                                                                                }
                                                                                            ]
                                                                                        },
                                                                                        {
                                                                                            "tag": "p"
                                                                                        },
                                                                                        {
                                                                                            "tag": "p"
                                                                                        }
                                                                                    ]
                                                                                },
                                                                                {
                                                                                    "tag": "p"
                                                                                },
                                                                                {
                                                                                    "tag": "div",
                                                                                    "class": "text",
                                                                                    "children": [
                                                                                        {
                                                                                            "tag": "span",
                                                                                            "itemprop": "item",
                                                                                            "itemscope": "",
                                                                                            "itemtype": "http://schema.org/SiteNavigationElement",
                                                                                            "children": [
                                                                                                {
                                                                                                    "tag": "a",
                                                                                                    "class": "bouton coul_boutons",
                                                                                                    "href": "https://www.pronostics-courses.fr/php/contact/contact.php",
                                                                                                    "rel": "nofollow",
                                                                                                    "title": "Contact Webmaster",
                                                                                                    "itemprop": "url",
                                                                                                    "children": [
                                                                                                        {
                                                                                                            "tag": "span",
                                                                                                            "text": "Contact Webmaster",
                                                                                                            "itemprop": "description"
                                                                                                        }
                                                                                                    ]
                                                                                                }
                                                                                            ]
                                                                                        }
                                                                                    ]
                                                                                }
                                                                            ]
                                                                        },
                                                                        {
                                                                            "tag": "br"
                                                                        }
                                                                    ]
                                                                }
                                                            ]
                                                        }
                                                    ]
                                                }
                                            ]
                                        }
                                    ]
                                }
                            ]
                        },
                        {
                            "tag": "br"
                        },
                        {
                            "tag": "br"
                        },
                        {
                            "tag": "p",
                            "aria-hidden": "true"
                        },
                        {
                            "tag": "hr",
                            "class": "separation"
                        },
                        {
                            "tag": "p",
                            "aria-hidden": "true",
                            "children": [
                                {
                                    "tag": "br"
                                }
                            ]
                        },
                        {
                            "tag": "footer",
                            "class": "nav_index",
                            "children": [
                                {
                                    "tag": "h4",
                                    "class": "coul_listecourses",
                                    "itemscope": "",
                                    "itemtype": "http://schema.org/WebPageElement",
                                    "children": [
                                        {
                                            "tag": "span",
                                            "text": "Webmaster-concepteur  de ce site : Jean François Ortolo",
                                            "itemprop": "description"
                                        }
                                    ]
                                },
                                {
                                    "tag": "p",
                                    "aria-hidden": "true"
                                },
                                {
                                    "tag": "h4",
                                    "id": "mentions_legales",
                                    "itemscope": "",
                                    "itemtype": "http://schema.org/WebPageElement",
                                    "children": [
                                        {
                                            "tag": "span",
                                            "itemprop": "about",
                                            "itemscope": "",
                                            "itemtype": "http://schema.org/SiteNavigationElement",
                                            "children": [
                                                {
                                                    "tag": "a",
                                                    "itemprop": "url",
                                                    "href": "https://www.pronostics-courses.fr/php/cgu/mentions-legales.html",
                                                    "title": "Mentions légales du site",
                                                    "children": [
                                                        {
                                                            "tag": "span",
                                                            "text": "Mentions légales du site",
                                                            "itemprop": "description"
                                                        }
                                                    ]
                                                }
                                            ]
                                        }
                                    ]
                                }
                            ]
                        },
                        {
                            "tag": "p",
                            "aria-hidden": "true"
                        }
                    ]
                }
            ]
        }
    ]
}
 
WRInaute accro
Rebonjour

Là il y a autre chose.

Les commentaires conditionnels de Internet Explorer [8-10[, sont de la forme :


HTML:
<!--[if IE] meta http-equiv="X-UA-Compatible" content="IE=edge"<![endif]-->

   ou

<![if IE] meta http-equiv="X-UA-Compatible" content="IE=edge"<![endif]>

Pour la première forme j'obtiens :

[if IE]> <meta http-equiv="X-UA-Compatible" content="IE=edge" /> <![endif]

interprété en :



JSON:
{
                    "tag": "comment",
                    "pre_comment": "[if IE]>",
                    "children": {
                        "tag": "meta",
                        "http-equiv": "X-UA-Compatible",
                        "content": "IE=edge"
                    },
                    "post_comment": "<![endif]"
                },


Mais la deuxième forme semble ne pas être un commentaire, je n'obtiens rien.

Comment avec PHP DOMDocument sélectionner la deuxième version d'un commentaire conditionnel ?

Merci beaucoup.
 
S
suppr334822
Guest
Comment avec PHP DOMDocument sélectionner la deuxième version d'un commentaire conditionnel ?
<?php

// Exemple de document HTML contenant un commentaire conditionnel
$html = '<!DOCTYPE html>
<html>
<head>
<!--[if lt IE 9]>
<script src="https://cdnjs.cloudflare.com/ajax/libs/html5shiv/3.7.3/html5shiv.js"></script>
<![endif]-->
<title>Ma page HTML</title>
</head>
<body>
<h1>Bienvenue sur ma page HTML</h1>
<p>Contenu de ma page</p>
</body>
</html>';

$doc = new DOMDocument();
$doc->loadHTML($html);

// Sélectionner le commentaire conditionnel
$commentaires = $doc->getElementsByTagName('comment');
foreach ($commentaires as $commentaire) {
// Vérifier si le commentaire est celui recherché
if (strpos($commentaire->nodeValue, 'lt IE 9') !== false) {
// Sélectionner la deuxième version du commentaire conditionnel
$commentaires_version2 = $doc->getElementsByTagName('comment');
$compteur = 0;
foreach ($commentaires_version2 as $commentaire_version2) {
if ($commentaire_version2->nodeValue == $commentaire->nodeValue) {
$compteur++;
if ($compteur == 2) {
echo $commentaire_version2->nodeValue;
break;
}
}
}
}
}

?>
 
S
suppr334822
Guest
Mais la deuxième forme semble ne pas être un commentaire, je n'obtiens rien.
Le code que vous avez fourni n'est pas un commentaire à proprement parler, mais plutôt une directive de conditionnement spécifique à Internet Explorer. Cette directive est destinée à être lue et interprétée uniquement par Internet Explorer, et est encadrée par les balises de commentaire spécifiques d'IE, ce qui signifie que les autres navigateurs vont simplement l'ignorer.

La directive elle-même indique au navigateur d'utiliser la dernière version de son moteur de rendu disponible, plutôt que de passer en mode de compatibilité avec une version antérieure du navigateur. Cela garantit que le navigateur utilise les dernières normes web et offre une expérience utilisateur optimale.
 
WRInaute accro
Voilà voilà

Tout est ok.

J'interprète aussi les commentaires.


JSON:
{
    "tag": "html",
    "lang": "fr",
    "children": [
        {
            "tag": "head",
            "children": [
                {
                    "tag": "meta",
                    "http-equiv": "Content-Type",
                    "content": "text/html; charset=utf-8"
                },
                {
                    "tag": "link",
                    "rel": "stylesheet",
                    "type": "text/css",
                    "href": "/style_20230205_01.css"
                },
                {
                    "tag": "meta",
                    "name": "viewport",
                    "content": "width=device-width, initial-scale=1.0"
                },
                {
                    "tag": "comment",
                    "pre_comment": "<!--[if IE]>",
                    "children": {
                        "tag": "meta",
                        "http-equiv": "X-UA-Compatible",
                        "content": "IE=edge"
                    },
                    "post_comment": "<![endif]-->"
                },
                {
                    "tag": "comment",
                    "pre_comment": "<!--[if lt IE 9]>",
                    "children": [
                        {
                            "tag": "meta",
                            "http-equiv": "X-UA-Compatible",
                            "content": "IE=edge"
                        },
                        {
                            "tag": "script",
                            "nonce": "H+QoXpifS4LqrSZf9n66leO6hEkyet5K",
                            "src": "http://github.com/aFarkas/html5shiv/blob/master/dist/html5shiv.js",
                            "defer": ""
                        }
                    ],
                    "post_comment": "<![endif]-->"
                },
                {
                    "tag": "comment",
                    "pre_comment": "<!-- Matomo -->",
                    "post_comment": "<!-- Matomo -->"
                },
                {
                    "tag": "script",
                    "nonce": "H+QoXpifS4LqrSZf9n66leO6hEkyet5K",
                    "text": "var _paq = window._paq = window._paq || [];   /* tracker methods like \"setCustomDimension\" should be called before \"trackPageView\" */   _paq.push(['trackPageView']);   _paq.push(['enableLinkTracking']);   (function() {           var u=\"https://analytics.pronostics-courses.fr/\";           _paq.push(['setTrackerUrl', u+'matomo.php']);           _paq.push(['setSiteId', '1']);           _paq.push(['HeatmapSessionRecording::disable']);           var d=document, g=d.createElement('script'), s=d.getElementsByTagName('script')[0];           g.nonce='H+QoXpifS4LqrSZf9n66leO6hEkyet5K'; g.async=true; g.src=u+'matomo.js'; s.parentNode.insertBefore(g,s);   })();"
                },
                {
                    "tag": "noscript",
                    "children": [
                        {
                            "tag": "p",
                            "children": [
                                {
                                    "tag": "img",
                                    "nonce": "H+QoXpifS4LqrSZf9n66leO6hEkyet5K",
                                    "src": "https://analytics.pronostics-courses.fr/matomo.php?idsite=1&rec=1",
                                    "style": "border:0;",
                                    "alt": ""
                                }
                            ]
                        }
                    ]
                },
                {
                    "tag": "comment",
                    "pre_comment": "<!-- End Matomo Code -->",
                    "post_comment": "<!-- End Matomo Code -->"
                },
                {
                    "tag": "link",
                    "rel": "canonical",
                    "href": "http://localhost/"
                },
                {
                    "tag": "title",
                    "text": "Statistiques et Pronostics Courses de Chevaux"
                },
                {
                    "tag": "meta",
                    "name": "keywords",
                    "content": "cheval, chevaux, pronostics, courses de chevaux, pronostic, pronostics courses, pronostics courses de chevaux, estimations prévisionnelles, base de données courses"
                },
                {
                    "tag": "meta",
                    "name": "description",
                    "content": "Statistiques, Pronostics et Historiques Graphiques sur les Courses de Chevaux"
                },
                {
                    "tag": "meta",
                    "name": "author",
                    "content": "Jean-Francois Ortolo"
                }
            ]
        },
        {
            "tag": "body",
            "itemscope": "",
            "itemtype": "http://schema.org/WebPage",
            "children": [
                {
                    "tag": "meta",
                    "itemprop": "description",
                    "content": "Statistiques, Pronostics et Historiques Graphiques sur les Courses de Chevaux"
                },
                {
                    "tag": "a",
                    "class": "cache",
                    "itemprop": "url",
                    "href": "http://localhost",
                    "aria-label": "Statistiques et Pronostics sur les Courses de Chevaux"
                },
                {
                    "tag": "a",
                    "class": "cache",
                    "itemprop": "breadcrumb",
                    "href": "http://localhost",
                    "aria-label": "Statistiques et Pronostics sur les Courses de Chevaux"
                },
                {
                    "tag": "span",
                    "itemscope": "",
                    "itemtype": "http://schema.org/Language",
                    "children": [
                        {
                            "tag": "meta",
                            "itemprop": "name",
                            "content": "French"
                        }
                    ]
                },
                {
                    "tag": "div",
                    "itemscope": "",
                    "itemtype": "http://schema.org/AboutPage",
                    "children": [
                        {
                            "tag": "div",
                            "itemprop": "author",
                            "itemscope": "",
                            "itemtype": "http://schema.org/Person",
                            "children": [
                                {
                                    "tag": "meta",
                                    "itemprop": "name",
                                    "content": "Jean-Francois Ortolo"
                                },
                                {
                                    "tag": "meta",
                                    "itemprop": "birthDate",
                                    "content": "1957-12-18"
                                },
                                {
                                    "tag": "meta",
                                    "itemprop": "nationality",
                                    "content": "French"
                                },
                                {
                                    "tag": "meta",
                                    "itemprop": "homeLocation",
                                    "content": "Paris"
                                }
                            ]
                        }
                    ]
                },
                {
                    "tag": "meta",
                    "property": "og:title",
                    "content": "Statistiques, Pronostics et Historiques Graphiques sur les Courses de Chevaux"
                },
                {
                    "tag": "meta",
                    "property": "og:type",
                    "content": "Pronostics, Pronostics et Historiques Graphiques sur les Courses de Chevaux"
                },
                {
                    "tag": "meta",
                    "property": "og:url",
                    "content": "http://localhost/"
                },
                {
                    "tag": "p",
                    "aria-hidden": "true"
                },
                {
                    "tag": "header",
                    "class": "nav_index",
                    "children": [
                        {
                            "tag": "div",
                            "text": "Statistiques Courses de Chevaux",
                            "class": "logo"
                        }
                    ]
                },
                {
                    "tag": "br"
                },
                {
                    "tag": "div",
                    "class": "blochaut",
                    "children": [
                        {
                            "tag": "div",
                            "class": "bloc blocgauche",
                            "children": [
                                {
                                    "tag": "br"
                                },
                                {
                                    "tag": "article",
                                    "class": "nav_index",
                                    "children": [
                                        {
                                            "tag": "header",
                                            "class": "nav_index",
                                            "children": [
                                                {
                                                    "tag": "h1",
                                                    "text": "Choisissez vos courses..."
                                                }
                                            ]
                                        },
                                        {
                                            "tag": "br"
                                        },
                                        {
                                            "tag": "aside",
                                            "class": "nav_index",
                                            "children": [
                                                {
                                                    "tag": "ul",
                                                    "id": "menu",
                                                    "itemscope": "",
                                                    "itemtype": "http://schema.org/ItemList",
                                                    "children": [
                                                        {
                                                            "tag": "li",
                                                            "itemprop": "itemListElement",
                                                            "itemscope": "",
                                                            "itemtype": "http://schema.org/ListItem",
                                                            "children": [
                                                                {
                                                                    "tag": "meta",
                                                                    "itemprop": "position",
                                                                    "content": "1"
                                                                },
                                                                {
                                                                    "tag": "h2",
                                                                    "itemprop": "item",
                                                                    "itemscope": "",
                                                                    "itemtype": "http://schema.org/SiteNavigationElement",
                                                                    "children": [
                                                                        {
                                                                            "tag": "a",
                                                                            "class": "bouton bouton_gauche coul_boutons",
                                                                            "title": "Pronostics Courses Lundi 3 Avril 2023",
                                                                            "itemprop": "url",
                                                                            "href": "http://localhost/php/courses-lendemain/new-courses.php",
                                                                            "children": [
                                                                                {
                                                                                    "tag": "span",
                                                                                    "itemprop": "description",
                                                                                    "children": [
                                                                                        {
                                                                                            "tag": "br"
                                                                                        }
                                                                                    ]
                                                                                }
                                                                            ]
                                                                        }
                                                                    ]
                                                                }
                                                            ]
                                                        },
                                                        {
                                                            "tag": "li",
                                                            "itemprop": "itemListElement",
                                                            "itemscope": "",
                                                            "itemtype": "http://schema.org/ListItem",
                                                            "children": [
                                                                {
                                                                    "tag": "meta",
                                                                    "itemprop": "position",
                                                                    "content": "2"
                                                                },
                                                                {
                                                                    "tag": "h2",
                                                                    "itemprop": "item",
                                                                    "itemscope": "",
                                                                    "itemtype": "http://schema.org/SiteNavigationElement",
                                                                    "children": [
                                                                        {
                                                                            "tag": "a",
                                                                            "class": "bouton bouton_gauche coul_boutons",
                                                                            "title": "Pronostics Courses Dimanche 2 Avril 2023",
                                                                            "itemprop": "url",
                                                                            "href": "http://localhost/php/courses-aujourdhui/new-courses.php",
                                                                            "children": [
                                                                                {
                                                                                    "tag": "span",
                                                                                    "itemprop": "description",
                                                                                    "children": [
                                                                                        {
                                                                                            "tag": "br"
                                                                                        }
                                                                                    ]
                                                                                }
                                                                            ]
                                                                        }
                                                                    ]
                                                                }
                                                            ]
                                                        },
                                                        {
                                                            "tag": "li",
                                                            "itemprop": "itemListElement",
                                                            "itemscope": "",
                                                            "itemtype": "http://schema.org/ListItem",
                                                            "children": [
                                                                {
                                                                    "tag": "meta",
                                                                    "itemprop": "position",
                                                                    "content": "3"
                                                                },
                                                                {
                                                                    "tag": "h2",
                                                                    "itemprop": "item",
                                                                    "itemscope": "",
                                                                    "itemtype": "http://schema.org/SiteNavigationElement",
                                                                    "children": [
                                                                        {
                                                                            "tag": "a",
                                                                            "class": "bouton bouton_gauche coul_boutons",
                                                                            "title": "Pronostics Courses dix derniers jours",
                                                                            "itemprop": "url",
                                                                            "href": "http://localhost/php/courses-anciennes/old-courses.php",
                                                                            "children": [
                                                                                {
                                                                                    "tag": "span",
                                                                                    "itemprop": "description",
                                                                                    "children": [
                                                                                        {
                                                                                            "tag": "br"
                                                                                        }
                                                                                    ]
                                                                                }
                                                                            ]
                                                                        }
                                                                    ]
                                                                }
                                                            ]
                                                        }
                                                    ]
                                                }
                                            ]
                                        }
                                    ]
                                },
                                {
                                    "tag": "br"
                                }
                            ]
                        },
                        {
                            "tag": "div",
                            "class": "bloc blocdroite",
                            "children": [
                                {
                                    "tag": "br"
                                },
                                {
                                    "tag": "article",
                                    "class": "nav_index",
                                    "children": [
                                        {
                                            "tag": "header",
                                            "class": "nav_index",
                                            "children": [
                                                {
                                                    "tag": "div",
                                                    "class": "bloctextehaut",
                                                    "children": [
                                                        {
                                                            "tag": "h2",
                                                            "text": "Bonjour Mesdames et Messieurs"
                                                        }
                                                    ]
                                                }
                                            ]
                                        },
                                        {
                                            "tag": "aside",
                                            "class": "nav_index",
                                            "children": [
                                                {
                                                    "tag": "ul",
                                                    "class": "bloctextebas",
                                                    "itemscope": "",
                                                    "itemtype": "http://schema.org/ItemList",
                                                    "children": [
                                                        {
                                                            "tag": "li",
                                                            "itemprop": "itemListElement",
                                                            "itemscope": "",
                                                            "itemtype": "http://schema.org/ListItem",
                                                            "children": [
                                                                {
                                                                    "tag": "meta",
                                                                    "itemprop": "position",
                                                                    "content": "1"
                                                                },
                                                                {
                                                                    "tag": "div",
                                                                    "text": "Ce site est destiné à donner des Statistiques Prévisionnelles, des Pronostics et des Historiques Graphiques sur les Courses du lendemain ou de l'après-midi :",
                                                                    "class": "text"
                                                                },
                                                                {
                                                                    "tag": "h3",
                                                                    "itemprop": "item",
                                                                    "itemscope": "",
                                                                    "itemtype": "http://schema.org/SiteNavigationElement",
                                                                    "children": [
                                                                        {
                                                                            "tag": "a",
                                                                            "class": "bouton bouton_droit coul_boutons",
                                                                            "title": "Pronostics Lundi 3 Avril 2023",
                                                                            "itemprop": "url",
                                                                            "href": "http://localhost/php/courses-lendemain/new-courses.php",
                                                                            "children": [
                                                                                {
                                                                                    "tag": "span",
                                                                                    "text": "Pronostics Lundi 3 Avril 2023",
                                                                                    "itemprop": "description"
                                                                                }
                                                                            ]
                                                                        }
                                                                    ]
                                                                }
                                                            ]
                                                        },
                                                        {
                                                            "tag": "li",
                                                            "itemprop": "itemListElement",
                                                            "itemscope": "",
                                                            "itemtype": "http://schema.org/ListItem",
                                                            "children": [
                                                                {
                                                                    "tag": "meta",
                                                                    "itemprop": "position",
                                                                    "content": "2"
                                                                },
                                                                {
                                                                    "tag": "div",
                                                                    "class": "text",
                                                                    "les": "",
                                                                    "courses": "",
                                                                    "du": "",
                                                                    "soir": "",
                                                                    "ou": "",
                                                                    "de": "",
                                                                    "la": "",
                                                                    "veille": "",
                                                                    ":": "",
                                                                    "children": [
                                                                        {
                                                                            "tag": "h3",
                                                                            "itemprop": "item",
                                                                            "itemscope": "",
                                                                            "itemtype": "http://schema.org/SiteNavigationElement",
                                                                            "children": [
                                                                                {
                                                                                    "tag": "a",
                                                                                    "class": "bouton bouton_droit coul_boutons",
                                                                                    "title": "Pronostics Dimanche 2 Avril 2023",
                                                                                    "itemprop": "url",
                                                                                    "href": "http://localhost/php/courses-aujourdhui/new-courses.php",
                                                                                    "children": [
                                                                                        {
                                                                                            "tag": "span",
                                                                                            "text": "Pronostics Dimanche 2 Avril 2023",
                                                                                            "itemprop": "description"
                                                                                        }
                                                                                    ]
                                                                                }
                                                                            ]
                                                                        },
                                                                        {
                                                                            "tag": "li",
                                                                            "itemprop": "itemListElement",
                                                                            "itemscope": "",
                                                                            "itemtype": "http://schema.org/ListItem",
                                                                            "children": [
                                                                                {
                                                                                    "tag": "meta",
                                                                                    "itemprop": "position",
                                                                                    "content": "3"
                                                                                },
                                                                                {
                                                                                    "tag": "div",
                                                                                    "text": ", ou sur les Courses passées :",
                                                                                    "class": "text"
                                                                                },
                                                                                {
                                                                                    "tag": "div",
                                                                                    "id": "calendar",
                                                                                    "children": [
                                                                                        {
                                                                                            "tag": "table",
                                                                                            "class": "calendrier coul_boutons",
                                                                                            "children": [
                                                                                                {
                                                                                                    "tag": "tbody",
                                                                                                    "children": [
                                                                                                        {
                                                                                                            "tag": "tr",
                                                                                                            "children": [
                                                                                                                {
                                                                                                                    "tag": "th",
                                                                                                                    "text": "2 Avril 2023",
                                                                                                                    "colspan": "7"
                                                                                                                }
                                                                                                            ]
                                                                                                        },
                                                                                                        {
                                                                                                            "tag": "tr",
                                                                                                            "children": [
                                                                                                                {
                                                                                                                    "tag": "th",
                                                                                                                    "colspan": "7",
                                                                                                                    "children": [
                                                                                                                        {
                                                                                                                            "tag": "form",
                                                                                                                            "action": "http://localhost",
                                                                                                                            "method": "post",
                                                                                                                            "children": [
                                                                                                                                {
                                                                                                                                    "tag": "input",
                                                                                                                                    "type": "hidden",
                                                                                                                                    "name": "day",
                                                                                                                                    "id": "day",
                                                                                                                                    "value": "2"
                                                                                                                                },
                                                                                                                                {
                                                                                                                                    "tag": "input",
                                                                                                                                    "type": "hidden",
                                                                                                                                    "name": "month",
                                                                                                                                    "id": "month",
                                                                                                                                    "value": "4"
                                                                                                                                },
                                                                                                                                {
                                                                                                                                    "tag": "input",
                                                                                                                                    "type": "hidden",
                                                                                                                                    "name": "year",
                                                                                                                                    "id": "year",
                                                                                                                                    "value": "2022"
                                                                                                                                },
                                                                                                                                {
                                                                                                                                    "tag": "input",
                                                                                                                                    "type": "submit",
                                                                                                                                    "value": "<<"
                                                                                                                                }
                                                                                                                            ]
                                                                                                                        },
                                                                                                                        {
                                                                                                                            "tag": "form",
                                                                                                                            "action": "http://localhost",
                                                                                                                            "method": "post",
                                                                                                                            "children": [
                                                                                                                                {
                                                                                                                                    "tag": "input",
                                                                                                                                    "type": "hidden",
                                                                                                                                    "name": "day",
                                                                                                                                    "id": "day",
                                                                                                                                    "value": "2"
                                                                                                                                },
                                                                                                                                {
                                                                                                                                    "tag": "input",
                                                                                                                                    "type": "hidden",
                                                                                                                                    "name": "month",
                                                                                                                                    "id": "month",
                                                                                                                                    "value": "3"
                                                                                                                                },
                                                                                                                                {
                                                                                                                                    "tag": "input",
                                                                                                                                    "type": "hidden",
                                                                                                                                    "name": "year",
                                                                                                                                    "id": "year",
                                                                                                                                    "value": "2023"
                                                                                                                                },
                                                                                                                                {
                                                                                                                                    "tag": "input",
                                                                                                                                    "type": "submit",
                                                                                                                                    "value": "<"
                                                                                                                                }
                                                                                                                            ]
                                                                                                                        },
                                                                                                                        {
                                                                                                                            "tag": "button",
                                                                                                                            "text": ">",
                                                                                                                            "class": "disabled"
                                                                                                                        },
                                                                                                                        {
                                                                                                                            "tag": "button",
                                                                                                                            "text": ">>",
                                                                                                                            "class": "disabled"
                                                                                                                        }
                                                                                                                    ]
                                                                                                                }
                                                                                                            ]
                                                                                                        },
                                                                                                        {
                                                                                                            "tag": "tr",
                                                                                                            "children": [
                                                                                                                {
                                                                                                                    "tag": "th",
                                                                                                                    "text": "Dim"
                                                                                                                },
                                                                                                                {
                                                                                                                    "tag": "th",
                                                                                                                    "text": "Lun"
                                                                                                                },
                                                                                                                {
                                                                                                                    "tag": "th",
                                                                                                                    "text": "Mar"
                                                                                                                },
                                                                                                                {
                                                                                                                    "tag": "th",
                                                                                                                    "text": "Mer"
                                                                                                                },
                                                                                                                {
                                                                                                                    "tag": "th",
                                                                                                                    "text": "Jeu"
                                                                                                                },
                                                                                                                {
                                                                                                                    "tag": "th",
                                                                                                                    "text": "Ven"
                                                                                                                },
                                                                                                                {
                                                                                                                    "tag": "th",
                                                                                                                    "text": "Sam"
                                                                                                                }
                                                                                                            ]
                                                                                                        },
                                                                                                        {
                                                                                                            "tag": "tr",
                                                                                                            "children": [
                                                                                                                {
                                                                                                                    "tag": "td"
                                                                                                                },
                                                                                                                {
                                                                                                                    "tag": "td"
                                                                                                                },
                                                                                                                {
                                                                                                                    "tag": "td"
                                                                                                                },
                                                                                                                {
                                                                                                                    "tag": "td"
                                                                                                                },
                                                                                                                {
                                                                                                                    "tag": "td"
                                                                                                                },
                                                                                                                {
                                                                                                                    "tag": "td"
                                                                                                                },
                                                                                                                {
                                                                                                                    "tag": "td",
                                                                                                                    "children": [
                                                                                                                        {
                                                                                                                            "tag": "a",
                                                                                                                            "text": "1",
                                                                                                                            "href": "http://localhost/php/courses-anciennes/liste-old-courses-1-4-2023.html"
                                                                                                                        }
                                                                                                                    ]
                                                                                                                }
                                                                                                            ]
                                                                                                        },
                                                                                                        {
                                                                                                            "tag": "tr",
                                                                                                            "children": [
                                                                                                                {
                                                                                                                    "tag": "td",
                                                                                                                    "text": "2",
                                                                                                                    "class": "aujourdhui"
                                                                                                                },
                                                                                                                {
                                                                                                                    "tag": "td",
                                                                                                                    "text": "3",
                                                                                                                    "class": "disabled"
                                                                                                                },
                                                                                                                {
                                                                                                                    "tag": "td",
                                                                                                                    "text": "4",
                                                                                                                    "class": "disabled"
                                                                                                                },
                                                                                                                {
                                                                                                                    "tag": "td",
                                                                                                                    "text": "5",
                                                                                                                    "class": "disabled"
                                                                                                                },
                                                                                                                {
                                                                                                                    "tag": "td",
                                                                                                                    "text": "6",
                                                                                                                    "class": "disabled"
                                                                                                                },
                                                                                                                {
                                                                                                                    "tag": "td",
                                                                                                                    "text": "7",
                                                                                                                    "class": "disabled"
                                                                                                                },
                                                                                                                {
                                                                                                                    "tag": "td",
                                                                                                                    "text": "8",
                                                                                                                    "class": "disabled"
                                                                                                                }
                                                                                                            ]
                                                                                                        },
                                                                                                        {
                                                                                                            "tag": "tr",
                                                                                                            "children": [
                                                                                                                {
                                                                                                                    "tag": "td",
                                                                                                                    "text": "9",
                                                                                                                    "class": "disabled"
                                                                                                                },
                                                                                                                {
                                                                                                                    "tag": "td",
                                                                                                                    "text": "10",
                                                                                                                    "class": "disabled"
                                                                                                                },
                                                                                                                {
                                                                                                                    "tag": "td",
                                                                                                                    "text": "11",
                                                                                                                    "class": "disabled"
                                                                                                                },
                                                                                                                {
                                                                                                                    "tag": "td",
                                                                                                                    "text": "12",
                                                                                                                    "class": "disabled"
                                                                                                                },
                                                                                                                {
                                                                                                                    "tag": "td",
                                                                                                                    "text": "13",
                                                                                                                    "class": "disabled"
                                                                                                                },
                                                                                                                {
                                                                                                                    "tag": "td",
                                                                                                                    "text": "14",
                                                                                                                    "class": "disabled"
                                                                                                                },
                                                                                                                {
                                                                                                                    "tag": "td",
                                                                                                                    "text": "15",
                                                                                                                    "class": "disabled"
                                                                                                                }
                                                                                                            ]
                                                                                                        },
                                                                                                        {
                                                                                                            "tag": "tr",
                                                                                                            "children": [
                                                                                                                {
                                                                                                                    "tag": "td",
                                                                                                                    "text": "16",
                                                                                                                    "class": "disabled"
                                                                                                                },
                                                                                                                {
                                                                                                                    "tag": "td",
                                                                                                                    "text": "17",
                                                                                                                    "class": "disabled"
                                                                                                                },
                                                                                                                {
                                                                                                                    "tag": "td",
                                                                                                                    "text": "18",
                                                                                                                    "class": "disabled"
                                                                                                                },
                                                                                                                {
                                                                                                                    "tag": "td",
                                                                                                                    "text": "19",
                                                                                                                    "class": "disabled"
                                                                                                                },
                                                                                                                {
                                                                                                                    "tag": "td",
                                                                                                                    "text": "20",
                                                                                                                    "class": "disabled"
                                                                                                                },
                                                                                                                {
                                                                                                                    "tag": "td",
                                                                                                                    "text": "21",
                                                                                                                    "class": "disabled"
                                                                                                                },
                                                                                                                {
                                                                                                                    "tag": "td",
                                                                                                                    "text": "22",
                                                                                                                    "class": "disabled"
                                                                                                                }
                                                                                                            ]
                                                                                                        },
                                                                                                        {
                                                                                                            "tag": "tr",
                                                                                                            "children": [
                                                                                                                {
                                                                                                                    "tag": "td",
                                                                                                                    "text": "23",
                                                                                                                    "class": "disabled"
                                                                                                                },
                                                                                                                {
                                                                                                                    "tag": "td",
                                                                                                                    "text": "24",
                                                                                                                    "class": "disabled"
                                                                                                                },
                                                                                                                {
                                                                                                                    "tag": "td",
                                                                                                                    "text": "25",
                                                                                                                    "class": "disabled"
                                                                                                                },
                                                                                                                {
                                                                                                                    "tag": "td",
                                                                                                                    "text": "26",
                                                                                                                    "class": "disabled"
                                                                                                                },
                                                                                                                {
                                                                                                                    "tag": "td",
                                                                                                                    "text": "27",
                                                                                                                    "class": "disabled"
                                                                                                                },
                                                                                                                {
                                                                                                                    "tag": "td",
                                                                                                                    "text": "28",
                                                                                                                    "class": "disabled"
                                                                                                                },
                                                                                                                {
                                                                                                                    "tag": "td",
                                                                                                                    "text": "29",
                                                                                                                    "class": "disabled"
                                                                                                                }
                                                                                                            ]
                                                                                                        },
                                                                                                        {
                                                                                                            "tag": "tr",
                                                                                                            "children": [
                                                                                                                {
                                                                                                                    "tag": "td",
                                                                                                                    "text": "30",
                                                                                                                    "class": "disabled"
                                                                                                                },
                                                                                                                {
                                                                                                                    "tag": "td"
                                                                                                                },
                                                                                                                {
                                                                                                                    "tag": "td"
                                                                                                                },
                                                                                                                {
                                                                                                                    "tag": "td"
                                                                                                                },
                                                                                                                {
                                                                                                                    "tag": "td"
                                                                                                                },
                                                                                                                {
                                                                                                                    "tag": "td"
                                                                                                                },
                                                                                                                {
                                                                                                                    "tag": "td"
                                                                                                                }
                                                                                                            ]
                                                                                                        }
                                                                                                    ]
                                                                                                }
                                                                                            ]
                                                                                        }
                                                                                    ]
                                                                                }
                                                                            ]
                                                                        },
                                                                        {
                                                                            "tag": "p"
                                                                        },
                                                                        {
                                                                            "tag": "article",
                                                                            "class": "nav_index",
                                                                            "children": [
                                                                                {
                                                                                    "tag": "div",
                                                                                    "text": "Les Pronostics de mon site sont produits automatiquement et  exclusivement par des calculs statistiques dont les données brutes proviennent de la Base de Données contenant les Arrivées des Courses de Janvier 2010 jusqu'à la date d'hier. ",
                                                                                    "class": "text"
                                                                                },
                                                                                {
                                                                                    "tag": "p"
                                                                                },
                                                                                {
                                                                                    "tag": "div",
                                                                                    "class": "text",
                                                                                    "children": [
                                                                                        {
                                                                                            "tag": "span",
                                                                                            "itemprop": "item",
                                                                                            "itemscope": "",
                                                                                            "itemtype": "http://schema.org/SiteNavigationElement",
                                                                                            "children": [
                                                                                                {
                                                                                                    "tag": "a",
                                                                                                    "class": "bouton coul_boutons",
                                                                                                    "href": "http://localhost/php/courses-anciennes/mode_demploi.html",
                                                                                                    "title": "Contact Webmaster",
                                                                                                    "itemprop": "url",
                                                                                                    "children": [
                                                                                                        {
                                                                                                            "tag": "span",
                                                                                                            "text": "Méthode d'Utilisation des Statistiques",
                                                                                                            "itemprop": "description"
                                                                                                        }
                                                                                                    ]
                                                                                                }
                                                                                            ]
                                                                                        }
                                                                                    ]
                                                                                },
                                                                                {
                                                                                    "tag": "p"
                                                                                },
                                                                                {
                                                                                    "tag": "div",
                                                                                    "text": "Vous pouvez évaluer le niveau de justesse de mes Pronostics, en comparant les Estimations Statistiques, avant et après les Courses. Les Pronostics, dérivés des statistiques, sont rigoureusement identiques, à ceux figurant la veille des Courses.",
                                                                                    "class": "text"
                                                                                },
                                                                                {
                                                                                    "tag": "p"
                                                                                },
                                                                                {
                                                                                    "tag": "div",
                                                                                    "class": "text",
                                                                                    "children": [
                                                                                        {
                                                                                            "tag": "a",
                                                                                            "class": "bouton coul_boutons",
                                                                                            "href": "http://www.lescourses.com/",
                                                                                            "title": "Mon site partenaire : LesCourses.com",
                                                                                            "children": [
                                                                                                {
                                                                                                    "tag": "span",
                                                                                                    "text": "LesCourses.com"
                                                                                                }
                                                                                            ]
                                                                                        }
                                                                                    ]
                                                                                },
                                                                                {
                                                                                    "tag": "p"
                                                                                },
                                                                                {
                                                                                    "tag": "div",
                                                                                    "class": "text",
                                                                                    "children": [
                                                                                        {
                                                                                            "tag": "a",
                                                                                            "class": "bouton coul_boutons",
                                                                                            "href": "http://www.lescourses.com/",
                                                                                            "title": "Mon site partenaire : LesCourses.com",
                                                                                            "children": [
                                                                                                {
                                                                                                    "tag": "span",
                                                                                                    "text": "LesCourses.com"
                                                                                                }
                                                                                            ]
                                                                                        },
                                                                                        {
                                                                                            "tag": "p"
                                                                                        },
                                                                                        {
                                                                                            "tag": "p"
                                                                                        }
                                                                                    ]
                                                                                },
                                                                                {
                                                                                    "tag": "p"
                                                                                },
                                                                                {
                                                                                    "tag": "div",
                                                                                    "class": "text",
                                                                                    "children": [
                                                                                        {
                                                                                            "tag": "span",
                                                                                            "itemprop": "item",
                                                                                            "itemscope": "",
                                                                                            "itemtype": "http://schema.org/SiteNavigationElement",
                                                                                            "children": [
                                                                                                {
                                                                                                    "tag": "a",
                                                                                                    "class": "bouton coul_boutons",
                                                                                                    "href": "http://localhost/php/contact/contact.php",
                                                                                                    "rel": "nofollow",
                                                                                                    "title": "Contact Webmaster",
                                                                                                    "itemprop": "url",
                                                                                                    "children": [
                                                                                                        {
                                                                                                            "tag": "span",
                                                                                                            "text": "Contact Webmaster",
                                                                                                            "itemprop": "description"
                                                                                                        }
                                                                                                    ]
                                                                                                }
                                                                                            ]
                                                                                        }
                                                                                    ]
                                                                                }
                                                                            ]
                                                                        },
                                                                        {
                                                                            "tag": "br"
                                                                        }
                                                                    ]
                                                                }
                                                            ]
                                                        }
                                                    ]
                                                }
                                            ]
                                        }
                                    ]
                                }
                            ]
                        },
                        {
                            "tag": "br"
                        },
                        {
                            "tag": "br"
                        },
                        {
                            "tag": "p",
                            "aria-hidden": "true"
                        },
                        {
                            "tag": "hr",
                            "class": "separation"
                        },
                        {
                            "tag": "p",
                            "aria-hidden": "true",
                            "children": [
                                {
                                    "tag": "br"
                                }
                            ]
                        },
                        {
                            "tag": "footer",
                            "class": "nav_index",
                            "children": [
                                {
                                    "tag": "h4",
                                    "class": "coul_listecourses",
                                    "itemscope": "",
                                    "itemtype": "http://schema.org/WebPageElement",
                                    "children": [
                                        {
                                            "tag": "span",
                                            "text": "Webmaster-concepteur  de ce site : Jean François Ortolo",
                                            "itemprop": "description"
                                        }
                                    ]
                                },
                                {
                                    "tag": "p",
                                    "aria-hidden": "true"
                                },
                                {
                                    "tag": "h4",
                                    "id": "mentions_legales",
                                    "itemscope": "",
                                    "itemtype": "http://schema.org/WebPageElement",
                                    "children": [
                                        {
                                            "tag": "span",
                                            "itemprop": "about",
                                            "itemscope": "",
                                            "itemtype": "http://schema.org/SiteNavigationElement",
                                            "children": [
                                                {
                                                    "tag": "a",
                                                    "itemprop": "url",
                                                    "href": "http://localhost/php/cgu/mentions-legales.html",
                                                    "title": "Mentions légales du site",
                                                    "children": [
                                                        {
                                                            "tag": "span",
                                                            "text": "Mentions légales du site",
                                                            "itemprop": "description"
                                                        }
                                                    ]
                                                }
                                            ]
                                        }
                                    ]
                                }
                            ]
                        },
                        {
                            "tag": "p",
                            "aria-hidden": "true"
                        }
                    ]
                }
            ]
        }
    ]
}
 
Discussions similaires
Haut