In the MySQL database, I have a datetime field, which is stored as follows:
2015-05-12 13:58:25.000508
But when I execute this request, for example:
$query = SdkEvent::with('sdkEventStack'); if (isset($params['CO_ID']) && $params['CO_ID'] != "") { $query->where('CO_ID', $params['CO_ID']); } if (isset($params['APP_ID']) && $params['APP_ID'] != "") { $query->where('APP_ID', $params['APP_ID']); } if (isset($params['app_ip']) && $params['app_ip'] != "") { $query->where('SDKEVENT_IP', 'LIKE', $params['app_ip'].'%'); } if (isset($params['PLACE_ID']) && $params['PLACE_ID'] != "") { $query->where('PLACEMENT_ID', $params['PLACE_ID']); } $sdks = $query->get();
I get the datetime as follows: 2015-05-12 13:58:25 Why am I not getting microseconds?
php mysql laravel microtime
karmous
source share