Initialize SplFixedArray elements to NULL instead of UNDEF The SplFixedArray API treats all elements as NULL, even if they have not been explicitly initialized. Rather than initializing
Initialize SplFixedArray elements to NULL instead of UNDEF The SplFixedArray API treats all elements as NULL, even if they have not been explicitly initialized. Rather than initializing to UNDEF an treating that specially in various circumstances, directly initialize elements to NULL. This also fixes an assertion failure in the attached test case.
show more ...
|