tomkirsch / microtime
CodeIgniter4 Microtime
Installs: 2
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 1
Forks: 0
Open Issues: 0
Type:project
Requires
- php: ^7.3||^8.0
- codeigniter4/framework: ^4
This package is auto-updated.
Last update: 2025-03-17 01:53:49 UTC
README
Extends CI's Time class to provide microseconds.
Any methods that pass hour, seconds, etc. now have microsecond int as the last arg.
PHP's format for microseconds is .u
MySQL field should be DATETIME(6)
use Tomkirsch\MicroTime\MicroTime;
$time = new MicroTime();
$time->setMicrosecond(6666);
print $time; // 2024-04-22 04:12:22.6666
Casting in Entities
use Tomkirsch\MicroTime\MicroTime;
class Transaction extends Entity{
protected $castHandlers = [
"microtime" => MicroTimeCast::class,
];
protected $casts = [
'trans_date' => 'microtime',
];
}