| 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 caricare file video PHP
    PHP fornisce allo sviluppatore Web il potere di creare siti web che interagiscono con e vengono aggiornati dagli utenti . Gli utenti possono inviare testi, immagini , video e altri contenuti su siti web che sono codificati con PHP . Per fornire la possibilità di caricare i video con PHP sul vostro sito web , creare un modulo che funziona come l'interfaccia utente e il codice PHP che funziona nel back-end per gestire e caricare correttamente il file video. Istruzioni
    1

    Aprire una pagina vuota in un editor di testo , come Blocco note , o di un'applicazione Web - authoring come Dreamweaver . Se si utilizza Dreamweaver o un altro WYSIWYG ( ciò che vedi è quello che ottieni) applicazione tipo , assicurarsi di modificare la visualizzazione in HTML .
    2

    Digitare il codice per il modulo che verrà utilizzato come l'interfaccia utente per il caricamento dei file video . Il codice HTML per il modulo dovrebbe essere simile a questo :

    "


    Video Upload Modulo < /title> <br> <p> < /head> <br> <p> <body> <br> <p> Utilizza questo modulo per caricare i file video . <br> <p> < form action = " uploadvideofile.php " metodo = " post " > <br> <p> video file di percorso di directory : input type = <origine type="file" name="uploadFile"> <br> <p> < " valore submit " = "Carica " > <br> <p> < /form > <br> <p> < /body> <br> <p> < /html > " <br> <p> Questa è solo una base forma che invita il file PHP " uploadvideofile.php " per gestire il file selezionato da caricare . Salvare il documento e aprire un altro documento vuoto . <br> 3 <p> Digita il codice PHP per gestire il caricamento del video . La sfida con il caricamento di video è la dimensione del file . Sarà necessario il codice PHP per essere in grado di gestire i file video di grandi dimensioni . Il codice dovrebbe essere simile a questo : <br> <p> " < php <br> <p> //Questo gestisce la dimensione massima per il file video in kbs <br> <p> define ( ? " MAX_SIZE " , " 500 " ) ; <br> <p> //Questa funzione legge l'estensione del file per assicurarsi che si tratta di un file video <br> <p> funzione getExtension ( $ str ) { <br> <p> $ i = strrpos ( $ str , ".") ; <br> <p> se {return " " ; } <br> <p> $ l = strlen ( $ str ) - $ i ; ( $ i ! ) per < p > $ ext = substr ( $ str , $ i +1 , $ l ) ; <br> <p> ritorno $ ext ; <br> <p> } <br> <p> //Questa variabile gestisce un errore e non caricare il file se c'è un problema con esso <br> <p> $ errori = 0; <br> <p> //controlla se il messaggio è stato inviato <br> <p> if ( isset ( $ _POST [' Submit '] ) ) { <br> <p> <br> <p> //legge il nome del file che l'utente ha inviato per il caricamento <br> <p> $ video = $ _FILES [ 'video' ] [ 'name'] ; <br> <p> //se non è vuoto <br> <p> if ( $ video) <br> <p> { <br> <p> //ottiene il nome originale di il file dal client macchina <br> <p> $ video_filename = stripslashes ( $ _FILES [' foto '] [ 'name' ] ) ; <br> <p> $ video_extension = getExtension ( $ filename) ; <br> < p > $ video_extension = strtolower ( $ estensione) ; <br> <p> //se non è un interno conosciuto , noi supponiamo si tratta di un errore e non caricare il file , altrimenti faremo più test <br> <p> if (( $ video_extension ! = " mpeg " ) && ( $ video_extension ! = " aVI" ) && ( $ video_extension ! = " flv " ) && ( $ video_extension ! = " mov " ) ) per < p > { <br> <p> echo ' <h1> estensione sconosciuta < /h1 > ! '; <br> <p> $ errore = 1; } <br> <p> <br> <p> altro <br> <p> { <br> <p> //ottiene la dimensione del video <br> <p> $ size = filesize ( $ _FILES [' foto '] [' tmp_name '] ) ; <br> < p > //confrontare le dimensioni con la dimensione massima che abbiamo definito e l'errore di stampa, se più grande <br> <p> if ( $ size> MAX_SIZE * 1024 ) per <p> { <br> <p> echo ' < h1 > Hai superato il limite di dimensione < /h1 > '; ! <br> <p> $ errore = 1; } <br> <p> <br> <p> //dare al video un nome univoco nel caso un video già esistente con il nome sul <br> <p> server di $ video_name = time () $ estensione . ' . '; . <br> <p> //assegnare una cartella in cui salvare il video sul vostro server <br> <p> $ newname = "video /" $ video_name ; . <br> <p> //verifica che sia stato caricato il video <br> <p> $ copiato = copy ( $ _FILES [ 'video' ] [ ,"' tmp_name '] , $ newname ) ; <br> <p> if ( $ copiato ) per <p> { <br> <p> eco ! ' <h1> Copia successo < /h1 > ! '; <br> <p> $ errore = 1; <br> <p> }}}} <br> <p> //Se non ci sono errori registrati , stampare il messaggio di successo <br> <p> if ( isset ( $ _POST [' submit' ]) && $ errori ) per <p> { <br> <p> echo " <h1> file caricato con successo ! Riprovare < /h1 > " ; ? <br> <p> } <br> <p> > " <br> <p> Lasciare fuori le virgolette sulla prima e l'ultima riga. Salvare il file come " uploadvideofile.php " in modo che il modulo qui sopra utilizza questo file per gestire il caricamento del video. Carica entrambi i file per il vostro web server. <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/92838.html' >Come trasferire i dati di Excel a MySQL </a></li></p></td> </tr> <tr> <td width="49%"> next : <a class='LinkNextArticle' href='/Programmazione/php-mysql-programming/92840.html' >Come impostare e-mail con PHP </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/92737.html" title="Come utilizzare PHP per siti web Cell Phone " target="_self">Come utilizzare PHP per siti web Cell Phone </a></td></tr><tr><td width="10" valign="top" class="">·</td><td class=""><a class="" href="/Programmazione/php-mysql-programming/91957.html" title="Come convertire un array associativo di stringhe PHP " target="_self">Come convertire un array associativo di stringhe PHP </a></td></tr><tr><td width="10" valign="top" class="">·</td><td class=""><a class="" href="/Programmazione/php-mysql-programming/92263.html" title="Come utilizzare Unlink PHP " target="_self">Come utilizzare Unlink PHP </a></td></tr><tr><td width="10" valign="top" class="">·</td><td class=""><a class="" href="/Programmazione/php-mysql-programming/92360.html" title="Come nascondere un file PHP " target="_self">Come nascondere un file PHP </a></td></tr><tr><td width="10" valign="top" class="">·</td><td class=""><a class="" href="/Programmazione/php-mysql-programming/91296.html" title="Come utilizzare SQL per determinare la più vicini Coordinate XY " target="_self">Come utilizzare SQL per determinare la più vicini Coor…</a></td></tr><tr><td width="10" valign="top" class="">·</td><td class=""><a class="" href="/Programmazione/php-mysql-programming/92431.html" title="Come formato della data stringa in MySQL con PHP " target="_self">Come formato della data stringa in MySQL con PHP </a></td></tr><tr><td width="10" valign="top" class="">·</td><td class=""><a class="" href="/Programmazione/php-mysql-programming/92903.html" title="PHP Immagine tipi mime " target="_self">PHP Immagine tipi mime </a></td></tr><tr><td width="10" valign="top" class="">·</td><td class=""><a class="" href="/Programmazione/php-mysql-programming/92066.html" title="Flash Sendmail Tutorial " target="_self">Flash Sendmail Tutorial </a></td></tr><tr><td width="10" valign="top" class="">·</td><td class=""><a class="" href="/Programmazione/php-mysql-programming/92395.html" title="Come aggiornare un campo in MySQL " target="_self">Come aggiornare un campo in MySQL </a></td></tr><tr><td width="10" valign="top" class="">·</td><td class=""><a class="" href="/Programmazione/php-mysql-programming/92641.html" title="Come controllare un proprietario di file in PHP " target="_self">Come controllare un proprietario di file in PHP </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/90135.html" title="Come trovare la media di un array in Java " target="_self">Come trovare la media di un array in Java </a></td></tr><tr><td width="10" valign="top" class="">·</td><td class=""><a class="" href="/Programmazione/visual-basics-programming/94781.html" title="Come modificare le funzioni in VB6 " target="_self">Come modificare le funzioni in VB6 </a></td></tr><tr><td width="10" valign="top" class="">·</td><td class=""><a class="" href="/Programmazione/java-programming/90611.html" title="Come creare giochi Java " target="_self">Come creare giochi Java </a></td></tr><tr><td width="10" valign="top" class="">·</td><td class=""><a class="" href="/Programmazione/computer-programming-languages/87077.html" title="Qual è la descrizione del processo di controllo e test in Validation & Verification " target="_self">Qual è la descrizione del processo di controllo e test…</a></td></tr><tr><td width="10" valign="top" class="">·</td><td class=""><a class="" href="/Programmazione/cc-programming/86233.html" title="Come utilizzare una casella combinata in MFC " target="_self">Come utilizzare una casella combinata in MFC </a></td></tr><tr><td width="10" valign="top" class="">·</td><td class=""><a class="" href="/Programmazione/java-programming/90656.html" title="Java casuale Metodo Numero " target="_self">Java casuale Metodo Numero </a></td></tr><tr><td width="10" valign="top" class="">·</td><td class=""><a class="" href="/Programmazione/java-programming/90436.html" title="Java 1.6 Formazione " target="_self">Java 1.6 Formazione </a></td></tr><tr><td width="10" valign="top" class="">·</td><td class=""><a class="" href="/Programmazione/visual-basics-programming/94916.html" title="Come utilizzare la casella di completamento automatico in WPF " target="_self">Come utilizzare la casella di completamento automatico …</a></td></tr><tr><td width="10" valign="top" class="">·</td><td class=""><a class="" href="/Programmazione/computer-programming-languages/88937.html" title="Come scrivere un programma Easytrieve Semplice " target="_self">Come scrivere un programma Easytrieve Semplice </a></td></tr><tr><td width="10" valign="top" class="">·</td><td class=""><a class="" href="/Programmazione/php-mysql-programming/91506.html" title="Come punto di riferimento Framework PHP " target="_self">Come punto di riferimento Framework PHP </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>