Aprire il file PHP in un editor di testo , ad esempio Blocco note .
2
Conservare un timestamp PHP in una variabile locale . È possibile accedere alla corrente timestamp Unix come intero con la funzione di "tempo" : " $ CUR_TIME = time () ; ", per esempio
3
Utilizzare la funzione PHP " data" con . la "data ( ' Ymd H : i: s ' , phptimestamp )" formato per convertire un timestamp PHP in una stringa DATETIME di MySQL . Utilizzando l'esempio precedente , "$ my_mysqldate = date ( ' Ymd H : i: s ' , $ CUR_TIME ) ; " memorizza l'ora corrente in una stringa DATETIME di MySQL
4
Usare il PHP " strtotime . funzione ( mysql_date ) " per convertire una stringa DATETIME di MySQL in un timestamp PHP . Ad esempio, " $ my_phpdate = strtotime ( $ my_mysqldate ) ; " , dove " my_mysqldate " è una stringa DATETIME di MySQL esistente
5
Salvare il file PHP e chiudere l' editor di testo
< . . br>
Programmazione © www.354353.com