PHP 7.3.0 released

The PHP development team released version 7.3.0 that comes with numerous improvements and new features such as

The list of changes is recorded in the ChangeLog. The migration guide is available in the PHP Manual.

Both Yii 2.0 and upcoming Yii 3.0 releases will be comatible with new PHP release.

10 Likes

I found 7.3 relatively uninteresting release in terms of new stuff.

You didn’t mention what I think is the best new feature: hrtime(). The interesting aspect is not so much the nanosecond resolution, which is nice, but that it is guaranteed to be linear with time. microtime(), otoh, returns the OS wallclock time, which may be adjusted unpredictably by the OS, so it is unreliable to measure elapsed time.

Yii should use hrtime(), when available, in its profiling features.

4 Likes

Great to hear about it.

1 Like

So that would be 2.0.16? If yes will it be out by march next year?

1 Like

yes, I’d expect it much earlier.

1 Like

thks to information fo me.

1 Like