Very short snippet: PHP plain date
venerdì 31 ottobre, 2008Converte una data dal formato yyyy-mm-dd hh:mm:ss a yyyymmddhhmmss. Utile per poter sfruttare le funzioni di ordinamento; tipo asort().
-
/**
-
* Format from "yyyy-mm-dd hh:mm:ss" to "yyyymmddhhmmss"
-
*/
-
function plainDate( $d ) {
-
}
Sempre meglio di questo:
-
function plainDate( $d ) {
-
}
O addirittura di questo:










19

[...] spulciando il suo blog, mi sono imbattuto in questo post. La sua snippet (che permette di convertire date dal formato yyyy-mm-dd hh:mm:ss a yyyymmddhhmmss) [...]