| Home  | Casa  | Hardware  | Networking  | Programmazione  | Software  | Domanda  | Sistemi  |   
Programmazione  
  • C /C + + Programming

  • Computer Programming Languages

  • Delphi Programming

  • Java Programming

  • Programmazione Javascript

  • PHP /MySQL Programmazione

  • Perl Programming

  • Python Programming

  • rubino Programmazione

  • Nozioni di base di Visual Programming
  •  
    Conoscenza Informatica >> Programmazione >> PHP /MySQL Programmazione >> Content
    Come scrivere i file XML in PHP
    script PHP in grado di scrivere i file di molti tipi diversi, tra cui XML . Utilizzando PHP per scrivere file XML è semplice e qualcosa che chiunque può imparare a fare , anche senza un sacco di esperienza di programmazione . Se hai la certezza di avere una chiara idea di ciò che si desidera che la struttura XML di riflettere prima di impostare sulla scrittura di codice PHP per l'output in un file , si farà il processo più semplice e meno soggetto a errori. Sia PHP e XML sono le tecnologie accessibili per gli sviluppatori in qualsiasi fase . Istruzioni
    1

    Crea il tuo script PHP con l'apertura di un nuovo file in un editor di testo o di ambiente di sviluppo integrato e salvarlo con estensione " . Php" , per esempio " writexml.php " o un altro nome pertinente al i vostri scopi . Inserisci il contorno PHP :


    Questa è la struttura di base di qualsiasi script PHP < php

    //codice va qui

    ? ? > . Tra l'apertura e chiusura tag PHP , è possibile immettere qualsiasi codice PHP è necessario elaborare e scrivere il file XML .
    2

    Crea il tuo strutture XML . Capire tutto ciò che XML è necessario prima di tentare di scrivere fuori dal codice PHP , in modo da ridurre al minimo la probabilità di errore . Se sei un nuovo XML , assicuratevi di capire come è strutturato . XML utilizza i dati strutturati ad albero , con elementi delineati da tag , come nel seguente esempio : ?

    < Xml un campione del contenuto XML è necessario in un file separato come riferimento mentre si sta sviluppando il vostro codice PHP .
    3

    costruire la struttura XML in script PHP . Se il tuo XML sta per essere costruito in modo dinamico , che è la situazione più comune in programmazione Web , cattura o processo qualunque dati necessari inclusi e integrare il tutto nel codice XML . L' esempio seguente codice PHP mostra dati che vengono acquisiti da ottenere variabili :

    $ individual_title = $ _GET [' ititle '] ;

    $ individual_years = $ _GET [ ' iyears '] ;

    $ xml_text = " < xml version = '1 .0 ' ? ? > " ;

    $ xml_text = " " $ individual_title " < /title> . . . ; " <br> <p> $ xml_text = ". <anni> </anno > "$ individual_years . ». " ; <br> <p> $ xml_text = . " < /individuale > " ; <br> <p> la variabile " $ xml_text " contiene ora l'intera struttura XML per essere scritto fuori , tra gli elementi di dati passati dalle variabili gET. Get variabili consentono di passare i dati da una pagina all'altra , aggiungendo che i dati per l'indirizzo della pagina . <br> 4 <p> Aggiungere il codice per aprire il file XML per la scrittura, o crearlo se non lo fa già esistere ( dopo il testo XML è stato memorizzato nella variabile ) : <br> <p> //ottiene un gestore per l' <br> <p> file $ file_handler = fopen ( " filename.xml " , 'a') ; <br> <p> //scrivere il <br> <p> fwrite XML ( $ file_handler , $ xml_text ) ; <br> <p> //chiude il file handler <br> <p> fclose ( $ file_handler ) ; <br> <p> Cambiare il nome del file in base alle proprie esigenze . Questo codice è per un file nella stessa directory dello script PHP, quindi se si vuole che sia in una posizione diversa , comprendere che, invece . <br> 5 <p> Carica il tuo script PHP su un server Web e testarlo . Per eseguire lo script PHP , è possibile individuare in un browser Web , tra cui le variabili GET, per esempio digitando un URL con la seguente struttura di esempio nella barra degli indirizzi del browser : <br> <p> http://yourdomain . com /writexml.php ? ititle = Dave & iyears = 12 <br> <p> quando si naviga allo script una volta , è possibile verificare se il file XML è stato scritto per il vostro server , così come se contiene il contenuto corretto e è adeguatamente strutturato . <br> <br> <div class=ad2><script language='javascript' src='/ad/201310/4.js'></script></div> </div> </td> </tr> </table> <table width="95%" height="1" border="0" align="center" cellpadding="0" cellspacing="0" bgcolor="#DEE7EE"> <tr> <td></td> </tr> </table> <table width="100%" height="7" border="0" cellpadding="0" cellspacing="0"> <tr> <td></td> </tr> </table> <table width="91%" height="52" border="0" align="center" cellpadding="0" cellspacing="0"> <tr> <td width="51%"><p>Previous : <a class='LinkPrevArticle' href='/Programmazione/php-mysql-programming/92605.html' >Pagine web dinamiche in PHP </a></li></p></td> </tr> <tr> <td width="49%"> next : <a class='LinkNextArticle' href='/Programmazione/php-mysql-programming/92607.html' >Come sapere se MySQL è 32 - o 64 - bit </a></li></td> </tr> </table></td> </tr> </table> <table width="100%" height="7" border="0" cellpadding="0" cellspacing="0"> <tr> <td></td> </tr> </table> <table width="770" height="246" border="0" align="center" cellpadding="0" cellspacing="0"> <tr> <td width="375" height="246" valign="top"><table width="380" border="0" cellpadding="0" cellspacing="0" class="bian"> <tr> <td height="244" valign="top"><table width="100%" border="0" cellpadding="0" cellspacing="0" background="img_dm/danmai_r4_c04 -.jpg" bgcolor="#DBE3EE"> <tr> <td width="4%" height="29"> </td> <td width="96%" class="lan_lm"> Articoli Correlati </td> </tr> </table> <table width="95%" height="209" border="0" align="center" cellpadding="0" cellspacing="4"> <tr> <td height="201"><table width="100%" cellpadding="0" cellspacing="0"><tr><td width="10" valign="top" class="">·</td><td class=""><a class="" href="/Programmazione/php-mysql-programming/91598.html" title="Come trattare con spazi dei nomi XML in PHP " target="_self">Come trattare con spazi dei nomi XML in PHP </a></td></tr><tr><td width="10" valign="top" class="">·</td><td class=""><a class="" href="/Programmazione/php-mysql-programming/92061.html" title="Come esportare MySQL dati di Excel in una funzione PHP " target="_self">Come esportare MySQL dati di Excel in una funzione PHP </a></td></tr><tr><td width="10" valign="top" class="">·</td><td class=""><a class="" href="/Programmazione/php-mysql-programming/92777.html" title="Linea PHP Certification " target="_self">Linea PHP Certification </a></td></tr><tr><td width="10" valign="top" class="">·</td><td class=""><a class="" href="/Programmazione/php-mysql-programming/92622.html" title="Come per evidenziare i campi obbligatori con PHP " target="_self">Come per evidenziare i campi obbligatori con PHP </a></td></tr><tr><td width="10" valign="top" class="">·</td><td class=""><a class="" href="/Programmazione/php-mysql-programming/92389.html" title="Come creare una query PHP in un database MySQL " target="_self">Come creare una query PHP in un database MySQL </a></td></tr><tr><td width="10" valign="top" class="">·</td><td class=""><a class="" href="/Programmazione/php-mysql-programming/92722.html" title="Come imparare SQL Facilmente " target="_self">Come imparare SQL Facilmente </a></td></tr><tr><td width="10" valign="top" class="">·</td><td class=""><a class="" href="/Programmazione/php-mysql-programming/92482.html" title="Come controllare un IP dal nome a dominio con PHP " target="_self">Come controllare un IP dal nome a dominio con PHP </a></td></tr><tr><td width="10" valign="top" class="">·</td><td class=""><a class="" href="/Programmazione/php-mysql-programming/93070.html" title="MySQL Replication Tutorial " target="_self">MySQL Replication Tutorial </a></td></tr><tr><td width="10" valign="top" class="">·</td><td class=""><a class="" href="/Programmazione/php-mysql-programming/93094.html" title="Come connettersi a un server remoto in PHP " target="_self">Come connettersi a un server remoto in PHP </a></td></tr><tr><td width="10" valign="top" class="">·</td><td class=""><a class="" href="/Programmazione/php-mysql-programming/91322.html" title="Errore PHP : Undefined offset " target="_self">Errore PHP : Undefined offset </a></td></tr><tr></tr></table></td> </tr> </table></td> </tr> </table></td> <td width="20" valign="top"></td> <td width="375" valign="top"><table width="380" border="0" cellpadding="0" cellspacing="0" class="bian"> <tr> <td height="244" valign="top"><table width="100%" border="0" cellpadding="0" cellspacing="0" background="img_dm/danmai_r4_c04 -.jpg" bgcolor="#DBE3EE"> <tr> <td width="4%" height="29"> </td> <td width="96%" class="lan_lm">Articoli in evidenza </td> </tr> </table> <table width="95%" height="207" border="0" align="center" cellpadding="0" cellspacing="4"> <tr> <td height="199"><table width="100%" cellpadding="0" cellspacing="0"><tr><td width="10" valign="top" class="">·</td><td class=""><a class="" href="/Programmazione/java-programming/89038.html" title="Come usare Tesseract OCR in Java " target="_self">Come usare Tesseract OCR in Java </a></td></tr><tr><td width="10" valign="top" class="">·</td><td class=""><a class="" href="/Programmazione/cc-programming/85759.html" title="Come invertire una coda in C + + " target="_self">Come invertire una coda in C + + </a></td></tr><tr><td width="10" valign="top" class="">·</td><td class=""><a class="" href="/Programmazione/visual-basics-programming/94472.html" title="VBA Code Struttura " target="_self">VBA Code Struttura </a></td></tr><tr><td width="10" valign="top" class="">·</td><td class=""><a class="" href="/Programmazione/visual-basics-programming/95920.html" title="Come visualizzare un documento di Word in VB.NET " target="_self">Come visualizzare un documento di Word in VB.NET </a></td></tr><tr><td width="10" valign="top" class="">·</td><td class=""><a class="" href="/Programmazione/php-mysql-programming/91896.html" title="Come trasferire i risultati a un client in PHP " target="_self">Come trasferire i risultati a un client in PHP </a></td></tr><tr><td width="10" valign="top" class="">·</td><td class=""><a class="" href="/Programmazione/visual-basics-programming/95953.html" title="Come impostare il valore di un record specifico in Access Visual Basic " target="_self">Come impostare il valore di un record specifico in Acce…</a></td></tr><tr><td width="10" valign="top" class="">·</td><td class=""><a class="" href="/Programmazione/java-programming/90331.html" title="Tutorial su Enterprise Java Bean " target="_self">Tutorial su Enterprise Java Bean </a></td></tr><tr><td width="10" valign="top" class="">·</td><td class=""><a class="" href="/Programmazione/php-mysql-programming/92117.html" title="Come utilizzare spazi dei nomi PHP " target="_self">Come utilizzare spazi dei nomi PHP </a></td></tr><tr><td width="10" valign="top" class="">·</td><td class=""><a class="" href="/Programmazione/visual-basics-programming/96561.html" title="Come creare un file Casella di riepilogo in Visual Basic " target="_self">Come creare un file Casella di riepilogo in Visual Basi…</a></td></tr><tr><td width="10" valign="top" class="">·</td><td class=""><a class="" href="/Programmazione/java-programming/89312.html" title="Come usare Ant Eclipse Con webOS " target="_self">Come usare Ant Eclipse Con webOS </a></td></tr><tr></tr></table></td> </tr> </table></td> </tr> </table></td> </tr> </table></td> </tr> </table> <table width="980" height="8" border="0" cellpadding="0" cellspacing="0"> <tr> <td></td> </tr> </table> <table border=0 cellSpacing=0 cellPadding=0 width=980 bgColor=#36506e height=90> <tr> <td class=bs height=90 align=middle>Copyright © Conoscenza Informatica http://it.wingwit.com <script language='javascript' src='/ad/201310/1.js'></script></td> </tr> </table> </div> </body> </html>