una libreria.. esagerato!!!!

php mette a disposizioni tools per sconvolgere e reperire date in qualsiasi maniera...


prova così
Codice PHP:
<?php
function toDate($format,$date){
    switch(
$format){
        case 
'it':$to='d-m-Y';break;
        case 
'en':$to='Y-m-d';break;
        }
    return 
date($to,strtotime($date));
    }


echo 
toDate('it','2009-12-31');
?>