Mysql
 sql >> Baza danych >  >> RDS >> Mysql

DateTime::CreateFromFormat dla PHP 5.2.14

Możesz rozszerzyć klasę DateTime i zaimplementować createFromFormat() siebie w ten sposób:-

class MyDateTime extends DateTime
{
    public static function createFromFormat($format, $time, $timezone = null)
    {
        if(!$timezone) $timezone = new DateTimeZone(date_default_timezone_get());
        $version = explode('.', phpversion());
        if(((int)$version[0] >= 5 && (int)$version[1] >= 2 && (int)$version[2] > 17)){
            return parent::createFromFormat($format, $time, $timezone);
        }
        return new DateTime(date($format, strtotime($time)), $timezone);
    }
}

$dateTime = MyDateTime::createFromFormat('Y-m-d', '2013-6-13');
var_dump($dateTime);
var_dump($dateTime->format('Y-m-d'));

Będzie to działać we wszystkich wersjach PHP>=5.2.0.

Zobacz demo http://3v4l.org/djucq



  1. Database
  2.   
  3. Mysql
  4.   
  5. Oracle
  6.   
  7. Sqlserver
  8.   
  9. PostgreSQL
  10.   
  11. Access
  12.   
  13. SQLite
  14.   
  15. MariaDB
  1. Mysql Porównaj dwa pola daty i godziny

  2. Porównanie zakresów dat

  3. Błąd:niezdefiniowana właściwość $load

  4. Eksport MySQL UTF8 do systemu Windows — import do systemu Linux

  5. Jakie są zalety trybu only_full_group_by?