tomkirsch/microtime

There is no license information available for the latest version (v1.0) of this package.

CodeIgniter4 Microtime

v1.0 2024-10-17 01:01 UTC

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',
	];
}