Categories

Tools

bitdefender

1&1 Web Hosting

Two functions in PHP to convert data from MySQL to the Italian format and vice versa


These two functions written in PHP, are useful when you need to convert dates pulled from a MySQL database in a more readable format, and vice versa when you must convert a date to save in the database MySQL.

<?php
/**
 * Converts a MySQL date format (yyyy-mm-dd) in Italian format (dd/mm/yyyy)
 * @param type $data
 * @return string Returns the converted date
 */
function convertsDataInItalianFormat($data) {
    $aaaa = substr ($data, 0, 4 );
    $mm = substr ($data, 5, 2 );
    $gg = substr ($data, 8, 2 );
    $cdata = $gg . "/" . $mm . "/" . $aaaa;
    return $cdata;
}

/**
 * Converts a Italian date format (dd/mm/yyyy) in MySQL date format (yyyy-mm-dd) 
 * @param type $data
 * @return string Returns the converted date
 */
function convertsDataInMySQLFormat($data) {
    $gg = substr ($data, 0, 2 );
    $mm = substr ($data, 3, 2 );
    $aaaa = substr ($data, 6, 4 );
    $cdata =  $aaaa . '-' .  $mm . '-' . $gg;
    return $cdata;
}
?>

 

Posted in PHP by MdmSoft

If our work has been of help, you can help us with a small donation...
Our programmers will thank you!



All information contained in this web site are the property of MdmSoft. The information is provided "as is", MdmSoft will not be liable for any misuse of the code contained in these pages, nor can it be for inaccuracies, grammatical errors or other factors that may have caused damage or lost earnings. MdmSoft is not responsible for the content of comments posted by users.
The examples in this area have the educational and demonstration purposes only, and may be copied only for your reference, but cannot be used for commercial purposes, or for any other purpose, without the express written consent of MdmSoft.
MdmSoft also reserves the right to change, without notice, to your liking this web site, the pages and its sections, and may suspend temporarily or definitely the various services included on this site.
While using this site, you agree to have read and accepted our Terms of Service and Privacy Policy.