History log of /php-src/ext/spl/tests/gh10907.phpt (Results 1 – 5 of 5)
Revision Date Author Comments
# 47b3fe47 24-Mar-2023 Niels Dossche <7771979+nielsdos@users.noreply.github.com>

Handle indirect zvals and use up-to-date properties in SplFixedArray::__serialize

Closes GH-10925.


# 0d524eda 27-Mar-2023 Niels Dossche <7771979+nielsdos@users.noreply.github.com>

Revert "Handle indirect zvals in SplFixedArray::__serialize"

This reverts commit e6989382296250b1983422c0b8730cd773f26ea7.


# e6989382 24-Mar-2023 Niels Dossche <7771979+nielsdos@users.noreply.github.com>

Handle indirect zvals in SplFixedArray::__serialize

Closes GH-10925.


# 01cb6fb6 24-Mar-2023 Niels Dossche <7771979+nielsdos@users.noreply.github.com>

Fix test for GH-10907 with output in different order for master branch


# a0826966 22-Mar-2023 Niels Dossche <7771979+nielsdos@users.noreply.github.com>

Fix GH-10907: Unable to serialize processed SplFixedArrays in PHP 8.2.4

The properties table can also contain numeric entries after a rebuild of
the table based on the array. Since the a

Fix GH-10907: Unable to serialize processed SplFixedArrays in PHP 8.2.4

The properties table can also contain numeric entries after a rebuild of
the table based on the array. Since the array can only contain numeric
entries, and the properties table can contain a mix of both, we'll add
the numeric entries from the array and only the string entries from the
properties table. To implement this we simply check if the key from the
properties table is a string.

Closes GH-10921.

show more ...