mirror of
https://github.com/php/php-src.git
synced 2024-11-26 03:16:33 +08:00
These are implicit properties as denoted by the flag. Dynamic properties only
exist in one single object and currently reflection api is not capable of showing those.
This commit is contained in:
parent
e6ea5ca9c3
commit
bd86aff005
@ -430,7 +430,7 @@ static void _function_string(string *str, zend_function *fptr, char* indent TSRM
|
||||
static void _property_string(string *str, zend_property_info *prop, char* indent TSRMLS_DC)
|
||||
{
|
||||
string_printf(str, "%sProperty [ %s", indent,
|
||||
(prop->flags & ZEND_ACC_IMPLICIT_PUBLIC) ? "<dynamic> " : "<default> ");
|
||||
(prop->flags & ZEND_ACC_IMPLICIT_PUBLIC) ? "<implicit> " : "<default> ");
|
||||
|
||||
/* These are mutually exclusive */
|
||||
switch (prop->flags & ZEND_ACC_PPP_MASK) {
|
||||
|
@ -430,7 +430,7 @@ static void _function_string(string *str, zend_function *fptr, char* indent TSRM
|
||||
static void _property_string(string *str, zend_property_info *prop, char* indent TSRMLS_DC)
|
||||
{
|
||||
string_printf(str, "%sProperty [ %s", indent,
|
||||
(prop->flags & ZEND_ACC_IMPLICIT_PUBLIC) ? "<dynamic> " : "<default> ");
|
||||
(prop->flags & ZEND_ACC_IMPLICIT_PUBLIC) ? "<implicit> " : "<default> ");
|
||||
|
||||
/* These are mutually exclusive */
|
||||
switch (prop->flags & ZEND_ACC_PPP_MASK) {
|
||||
|
Loading…
Reference in New Issue
Block a user