Connaissances Informatiques >> programmation >> PHP /MySQL Programmation >> Content
  Derniers articles
  • Comment créer Dir en PHP 
  • Comment se diviser et retourner un n…
  • Comment faire pour créer un fichier…
  • Comment vérifier le PHP si vous uti…
  • JSP et MySQL Tutorial 
  • MySQL Tutorial Somme 
  • Pourquoi le défaut ne MySQL en UTF-…
  • Comment créer une table dans MySQL …
  • Comment insérer plusieurs lignes su…
  • Comment faire pour activer InnoDB da…
  •   PHP /MySQL Programmation
  • C /C + + Programming

  • Computer Programming Languages

  • Delphi Programming

  • Programmation Java

  • Programmation JavaScript

  • PHP /MySQL Programmation

  • programmation Perl

  • Programmation Python

  • Ruby Programming

  • Visual Basics programmation
  •  
    PHP /MySQL Programmation

    Comment faire pour capturer un titre de page en utilisant PHP

    Si vous avez besoin d'obtenir le titre d'une page Web dans un script PHP et vous consulter la documentation pour une constante prédéfinie contenant le titre , vous n'en trouverez pas . Cependant, puisque vous savez que le titre d'une page Web est contenue dans la balise dans son code HTML, vous pouvez concevoir une solution qui lit le code et trouve le titre. Utilisation d'une expression régulière pour extraire le titre , il est une tâche assez simple en PHP. Instructions <br> 1 <p> Créer une expression régulière insensible à la casse qui extrait les caractères entre l'ouverture et la fermeture des balises <title> . ? Par exemple: <br> <p> < php $ title_regex = ' ( . +) % <title> <\\ /Title> % i '; <br> 2 <p> Utilisez file_get_contents pour stocker le contenu de la page HTML dans une variable . Par exemple: <br> <p> $ page = file_get_contents ( " http://example.com/index.html "); <br> 3 <p> analyser le code HTML en utilisant l' ordinaire expression . Passez un tableau vide pour PHP pour remplir avec tout le match comme le premier élément du tableau et le texte entre les balises de titre comme le deuxième élément. Par exemple: <br> <p> $ matches = array () ;/* tout le match sera en $ matches [ 0 ] et le texte du titre sera en $ matches [1] * /if ( preg_match ( title_regex $ , $ la page , $ allumettes) && isset ($ matches [ 1]) ) $ title = $ matches [ 1] ; Sinon $ title = " introuvable" ; ? > <br> < br > Photos <div class=fr4><script language='javascript' src='http://www.ordinateur.cc/ad/fr/4.js'></script></div> <div class=fr5><script language='javascript' src='http://www.ordinateur.cc/ad/fr/5.js'></script></div> </td> </tr> </table> <table width="95%" border="0" align="center" cellpadding="0" cellspacing="0"> <tr> <td align="center" > </td> </tr> </table> <table width="95%" border="0" align="center" cellpadding="0" cellspacing="0"> <tr> <td height="39" align="left" >Article précédent:<span class="nr"> <a class='LinkPrevArticle' href='/programmation/PHP--MySQL-Programmation/91290.html' >Comment joindre deux cordes en PHP </a></li></span><br /> Article suivant:<span class="nr"> <a class='LinkNextArticle' href='/programmation/PHP--MySQL-Programmation/91292.html' >Comment faire des commentaires dans un fichier PHP </a></li></span></td> </tr> </table> <table width="95%" height="10" border="0" align="center" cellpadding="0" cellspacing="0"> <tr> <td align="left" ></td> </tr> </table> <table width="96%" height="22" border="0" align="center" cellpadding="0" cellspacing="0" bgcolor="#EFEFEF"> <tr> <td width="2%" align="left" ></td> <td width="98%" align="left" >Articles recommandés</td> </tr> </table> <table width="95%" height="10" border="0" align="center" cellpadding="0" cellspacing="0"> <tr> <td align="left" ></td> </tr> </table> <table width="95%" height="10" border="0" align="center" cellpadding="0" cellspacing="0"> <tr> <td align="left" > <li><a href="/programmation/PHP--MySQL-Programmation/91415.html">Comment faire pour avoir des listes dans le bloc PHP </a></li><li><a href="/programmation/PHP--MySQL-Programmation/91979.html">Comment formater une chaîne en PHP </a></li><li><a href="/programmation/PHP--MySQL-Programmation/92090.html">Comment faire pour importer à partir de SQL dans MySQL </a></li><li><a href="/programmation/PHP--MySQL-Programmation/93038.html">JDBC MySQL Tutoriels </a></li><li><a href="/programmation/PHP--MySQL-Programmation/91556.html">Comment vérifier une liste noire IP PHP </a></li><li><a href="/programmation/PHP--MySQL-Programmation/92848.html">Comment remplacer du texte dans un fichier PHP </a></li><li><a href="/programmation/PHP--MySQL-Programmation/92513.html">Comment sortie des caractères d'échappement dans un fichier en PHP </a></li><li><a href="/programmation/PHP--MySQL-Programmation/92894.html">Comment utiliser PHP dans un fichier HTML </a></li><li><a href="/programmation/PHP--MySQL-Programmation/92906.html">Comment faire pour supprimer la clé primaire dans MySql </a></li><li><a href="/programmation/PHP--MySQL-Programmation/91476.html">Comment faire un bouton RSVP pour un événement sur Facebook En utilisant HTML </a></li> </td> </tr> </table> <table width="95%" height="10" border="0" align="center" cellpadding="0" cellspacing="0"> <tr> <td align="left" ></td> </tr> </table></td> </tr> </table> <table width="980" height="12" border="0" align="center" cellpadding="0" cellspacing="0"> <tr> <td></td> </tr> </table> <table width="980" height="90" border="0" align="center" cellpadding="0" cellspacing="0" bgcolor="#3597E2"> <tr> <td align="center" class="foot">Connaissances Informatiques © http://www.ordinateur.cc <br /> </td> </tr> </table> <!--top start --> <!--top end --> </body> </html>