mirror of
https://github.com/dg/dibi.git
synced 2025-02-23 18:33:45 +01:00
14 lines
327 B
PHP
14 lines
327 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
use Tester\Assert;
|
|
|
|
require __DIR__ . '/bootstrap.php';
|
|
|
|
$dt = new DateTime('2018-04-18 13:40:09.123456');
|
|
|
|
$res = dibi::stripMicroseconds($dt);
|
|
Assert::same('2018-04-18 13:40:09.123456', $dt->format('Y-m-d H:i:s.u'));
|
|
Assert::same('2018-04-18 13:40:09.000000', $res->format('Y-m-d H:i:s.u'));
|