/PHP-8.1/ext/reflection/tests/ |
H A D | bug40431.phpt | 11 $props = $RefObj->getProperties(); 13 var_dump($props); 14 var_dump($props[0]->isStatic()); 15 var_dump($props[0]->isPrivate()); 16 var_dump($props[0]->isPublic()); 33 var_dump($props); 34 var_dump($props[0]->isStatic()); 36 var_dump($props[0]->isPublic()); 50 var_dump($props); 51 var_dump($props[0]->isStatic()); [all …]
|
H A D | ReflectionParameter_isDefault.phpt | 12 $props = $ro->getProperties(); 13 $prop1 = $props[0]; 15 $prop2 = $props[1];
|
H A D | 012.phpt | 9 $props = $class->getDefaultProperties(); 10 echo $props["test"];
|
H A D | bug36308.phpt | 18 $props = $reflect->getProperties(); 19 echo $props[0]->getDocComment();
|
H A D | 001.phpt | 72 $props = array_keys(get_class_vars('ReflectionClassEx')); 73 sort($props); 74 var_dump($props);
|
H A D | property_exists.phpt | 20 static function test($oc, $props) 23 foreach($props as $p2) { 34 static function test($oc, $props) 37 foreach($props as $p2) { 48 static function test($oc, $props) 51 foreach($props as $p2) {
|
H A D | ReflectionClass_export_basic2.phpt | 2 ReflectionClass::__toString() - ensure inherited private props are hidden.
|
H A D | ReflectionProperty_constructor_variation1.phpt | 2 ReflectionProperty::__construct(): ensure inherited private props can't be accessed through Reflect…
|
/PHP-8.1/ext/spl/tests/ |
H A D | bug73209.phpt | 7 public $props = array(); 9 $this->props = ['hello' => 5, 'props' => ['keyme' => ['test' => 5]]]; 15 echo "Expect to see all keys in ->props here: \n"; 23 Expect to see all keys in ->props here: 24 props 26 props
|
/PHP-8.1/Zend/tests/ |
H A D | bug72813.phpt | 7 private $props = ['a' => 'text', 'b' => 1]; 11 return $this->props[$prop]; 17 $this->props[$prop] = $value; 22 return [$this->props];
|
H A D | bug28444.phpt | 22 public $props = array(); 33 return $this->props[$prop]; 39 $this->props[$prop] = $val;
|
H A D | bug80037.phpt | 10 public static function fromArray(array $props): self 13 foreach ($props as $k => &$v) {
|
H A D | bug78868.phpt | 27 $props = $classA->getProperties(); 28 $props[0]->setValue(2); //causes constant resolving, which runs autoload, all with EG(fake_scope) =…
|
H A D | assign_coalesce_001.phpt | 65 echo "\nStatic props:\n"; 120 Static props:
|
/PHP-8.1/Zend/tests/type_declarations/ |
H A D | typed_properties_024.phpt | 2 Test typed properties ignore private props during inheritance
|
H A D | typed_properties_018.phpt | 2 Test typed properties type applies to all props in group
|
/PHP-8.1/ext/date/tests/ |
H A D | date_interval_prop_dim.phpt | 2 Test DateInterval props with dimension handling
|
/PHP-8.1/ext/standard/ |
H A D | var.c | 828 …HashTable *ht, HashTable *props, zend_string *name, zend_string *error_name, zval *struc) /* {{{ */ in php_var_serialize_try_add_sleep_prop() argument 830 zval *val = zend_hash_find(props, name); in php_var_serialize_try_add_sleep_prop() 861 HashTable *props = zend_get_properties_for(struc, ZEND_PROP_PURPOSE_SERIALIZE); in php_var_serialize_get_sleep_props() local 879 if (php_var_serialize_try_add_sleep_prop(ht, props, name, name, struc) == SUCCESS) { in php_var_serialize_get_sleep_props() 893 if (php_var_serialize_try_add_sleep_prop(ht, props, priv_name, name, struc) == SUCCESS) { in php_var_serialize_get_sleep_props() 908 if (php_var_serialize_try_add_sleep_prop(ht, props, prot_name, name, struc) == SUCCESS) { in php_var_serialize_get_sleep_props() 926 zend_release_properties(props); in php_var_serialize_get_sleep_props() 983 HashTable props; in php_var_serialize_class() local 985 if (php_var_serialize_get_sleep_props(&props, struc, ht) == SUCCESS) { in php_var_serialize_class() 988 …buf, struc, &props, zend_hash_num_elements(&props), /* incomplete_class */ 0, var_hash, GC_REFCOUN… in php_var_serialize_class() [all …]
|
/PHP-8.1/ext/soap/tests/bugs/ |
H A D | segfault_assertion_props.phpt | 2 Segfault and assertion failure with refcounted props and arrays
|
/PHP-8.1/ext/date/ |
H A D | php_date.c | 1827 HashTable *props; in date_object_get_properties_for() local 1845 return props; in date_object_get_properties_for() 1880 return props; in date_object_get_properties_for() 1991 HashTable *props; in date_object_get_properties_for_timezone() local 2009 return props; in date_object_get_properties_for_timezone() 2018 return props; in date_object_get_properties_for_timezone() 2077 HashTable *props; in date_object_get_properties_interval() local 2084 return props; in date_object_get_properties_interval() 2114 return props; in date_object_get_properties_interval() 4856 return props; in date_object_get_properties_period() [all …]
|
/PHP-8.1/ext/gmp/ |
H A D | gmp.c | 305 HashTable *ht, *props = zend_std_get_properties(obj); in gmp_get_debug_info() local 310 ht = zend_array_dup(props); in gmp_get_debug_info() 2042 HashTable *props = Z_OBJ_P(ZEND_THIS)->properties; in ZEND_METHOD() local 2043 if (props && zend_hash_num_elements(props) != 0) { in ZEND_METHOD() 2065 zval *props = zend_hash_index_find(data, 1); in ZEND_METHOD() local 2066 if (props) { in ZEND_METHOD() 2067 if (Z_TYPE_P(props) != IS_ARRAY) { in ZEND_METHOD() 2072 object_properties_load(Z_OBJ_P(ZEND_THIS), Z_ARRVAL_P(props)); in ZEND_METHOD()
|
/PHP-8.1/ext/spl/ |
H A D | spl_observer.c | 248 HashTable *props; in spl_object_storage_debug_info() local 253 props = obj->handlers->get_properties(obj); in spl_object_storage_debug_info() 255 debug_info = zend_new_array(zend_hash_num_elements(props) + 1); in spl_object_storage_debug_info() 256 zend_hash_copy(debug_info, props, (copy_ctor_func_t)zval_add_ref); in spl_object_storage_debug_info()
|
/PHP-8.1/ext/ldap/ |
H A D | ldap.stub.php | 51 … $realm = null, ?string $authc_id = null, ?string $authz_id = null, ?string $props = null): bool {} argument
|
/PHP-8.1/ext/mysqli/ |
H A D | mysqli.c | 396 HashTable *retval, *props = obj->prop_handler; in mysqli_object_get_debug_info() local 399 retval = zend_new_array(zend_hash_num_elements(props) + 1); in mysqli_object_get_debug_info() 401 ZEND_HASH_FOREACH_PTR(props, entry) { in mysqli_object_get_debug_info()
|
/PHP-8.1/ext/pdo/ |
H A D | pdo_stmt.c | 2423 HashTable *props; in row_get_properties_for() local 2434 props = zend_array_dup(stmt->std.properties); in row_get_properties_for() 2443 zend_hash_update(props, stmt->columns[i].name, &val); in row_get_properties_for() 2445 return props; in row_get_properties_for()
|