History log of /PHP-8.2/Zend/tests/exception_stream_wrapper.phpt (Results 1 – 2 of 2)
Revision Date Author Comments
# 902d6439 11-Oct-2021 Nikita Popov

Deprecate implicit dynamic properties

Writing to a proprety that hasn't been declared is deprecated,
unless the class uses the #[AllowDynamicProperties] attribute or
defines __get()/

Deprecate implicit dynamic properties

Writing to a proprety that hasn't been declared is deprecated,
unless the class uses the #[AllowDynamicProperties] attribute or
defines __get()/__set().

RFC: https://wiki.php.net/rfc/deprecate_dynamic_properties

show more ...


# 70bd46cd 11-Oct-2021 Nikita Popov

Release trampoline on zend_call_function with active exception

zend_call_function() normally always releases a cached call
trampoline. Do this also if the call does not actually happen

Release trampoline on zend_call_function with active exception

zend_call_function() normally always releases a cached call
trampoline. Do this also if the call does not actually happen
due to an active exception, so the caller does not need to deal
with this very special case.

Fixes oss-fuzz #39792.

show more ...