File tree Expand file tree Collapse file tree 1 file changed +6
-4
lines changed Expand file tree Collapse file tree 1 file changed +6
-4
lines changed Original file line number Diff line number Diff line change @@ -202,6 +202,12 @@ PHP 8.3 UPGRADE NOTES
202
202
. pg_insert and pg_convert raises a ValueError or a TypeError instead of a WARNING when the
203
203
value/type of a field does not match properly with a PostGreSQL's type.
204
204
205
+ - Random:
206
+ . Changed mt_srand() and srand() to not check the number of arguments to
207
+ determine whether a random seed should be used. Passing null will generate
208
+ a random seed, 0 will use zero as the seed. The functions are now consistent
209
+ with Mt19937::__construct().
210
+
205
211
- Standard:
206
212
. E_NOTICEs emitted by unserialize() have been promoted to E_WARNING.
207
213
RFC: https://wiki.php.net/rfc/improve_unserialize_error_handling
@@ -252,10 +258,6 @@ PHP 8.3 UPGRADE NOTES
252
258
RFC: https://wiki.php.net/rfc/randomizer_additions
253
259
. Added Randomizer::nextFloat(), ::getFloat(), and IntervalBoundary.
254
260
RFC: https://wiki.php.net/rfc/randomizer_additions
255
- . Changed mt_srand() and srand() to not check the number of arguments to
256
- determine whether a random seed should be used. Passing null will generate
257
- a random seed, 0 will use zero as the seed. The functions are now consistent
258
- with Mt19937::__construct().
259
261
260
262
- Reflection:
261
263
. Return type of ReflectionClass::getStaticProperties() is no longer nullable.
You can’t perform that action at this time.
0 commit comments