| 
        php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login | 
 PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits             
             [2015-07-27 08:15 UTC] stas@php.net
 
-Assigned To:
+Assigned To: dmitry
  [2015-07-27 08:15 UTC] stas@php.net
 
-Assigned To: dmitry
+Assigned To: stas
  [2015-07-27 08:16 UTC] stas@php.net
 
-Status: Assigned
+Status: Not a bug
  [2015-07-27 08:16 UTC] stas@php.net
  [2015-08-03 06:37 UTC] dmitry@php.net
  | 
    |||||||||||||||||||||||||||
            
                 
                Copyright © 2001-2025 The PHP GroupAll rights reserved.  | 
        Last updated: Tue Nov 04 04:00:01 2025 UTC | 
Description: ------------ soap/php_encoding.c has this code in unset_zval_property(): zval member; zend_class_entry *old_scope; INIT_PZVAL(&member); ZVAL_STRING(&member, name, 0); old_scope = EG(scope); EG(scope) = Z_OBJCE_P(object); Z_OBJ_HT_P(object)->unset_property(object, &member, 0 TSRMLS_CC); However, since 5.4 the signature of unset_property is: void (*zend_object_unset_property_t)(zval *object, zval *member, const struct _zend_literal *key TSRMLS_DC); So this code needs to be updated.