File tree Expand file tree Collapse file tree 5 files changed +737
-314
lines changed Expand file tree Collapse file tree 5 files changed +737
-314
lines changed Original file line number Diff line number Diff line change @@ -1077,6 +1077,7 @@ PHP 8.4 UPGRADE NOTES
1077
1077
an xpath query. This can give a time improvement of easily two order of
1078
1078
magnitude for documents with tens of thousands of nodes.
1079
1079
. Improved performance and reduce memory consumption of XML serialization.
1080
+ . Reduced memory usage of node classes.
1080
1081
1081
1082
- FTP:
1082
1083
. Improved the performance of FTP uploads up to a factor of 10x for large
Original file line number Diff line number Diff line change @@ -182,7 +182,7 @@ URL: https://dom.spec.whatwg.org/#dom-element-classlist
182
182
*/
183
183
zend_result dom_element_class_list_read (dom_object * obj , zval * retval )
184
184
{
185
- const uint32_t PROP_INDEX = 20 ;
185
+ const uint32_t PROP_INDEX = 0 ;
186
186
187
187
#if ZEND_DEBUG
188
188
zend_string * class_list_str = ZSTR_INIT_LITERAL ("classList" , false);
Original file line number Diff line number Diff line change @@ -83,7 +83,7 @@ typedef struct dom_decoding_encoding_ctx {
83
83
/* https://dom.spec.whatwg.org/#dom-document-implementation */
84
84
zend_result dom_modern_document_implementation_read (dom_object * obj , zval * retval )
85
85
{
86
- const uint32_t PROP_INDEX = 14 ;
86
+ const uint32_t PROP_INDEX = 0 ;
87
87
88
88
#if ZEND_DEBUG
89
89
zend_string * implementation_str = ZSTR_INIT_LITERAL ("implementation" , false);
You can’t perform that action at this time.
0 commit comments