We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
If a microseconds value is between 999499 and 999999 it incorrectly rounds and truncates to .1000 when asked to format as milliseconds.
new Carbon('2017-01-01 10:00:00.999999'))->format('Y-m-d H:i:s.v') "2017-01-01 10:00:00.1000"
Expected behaviour:
Causes problems in Laravel with SqlServer laravel/framework#22407
The text was updated successfully, but these errors were encountered:
This is actually a PHP DateTime format bug
Sorry, something went wrong.
No branches or pull requests
If a microseconds value is between 999499 and 999999 it incorrectly rounds and truncates to .1000 when asked to format as milliseconds.
Expected behaviour:
Causes problems in Laravel with SqlServer laravel/framework#22407
The text was updated successfully, but these errors were encountered: