Home
last modified time | relevance | path

Searched refs:props (Results 1 – 21 of 21) sorted by relevance

/PHP-7.2/ext/reflection/tests/
H A Dbug40431.phpt11 $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 DReflectionParameter_isDefault.phpt12 $props = $ro->getProperties();
13 $prop1 = $props[0];
15 $prop2 = $props[1];
H A D012.phpt11 $props = $class->getDefaultProperties();
12 echo $props["test"];
H A Dbug36308.phpt18 $props = $reflect->getProperties();
19 echo $props[0]->getDocComment();
H A D001.phpt73 $props = array_keys(get_class_vars('ReflectionClassEx'));
74 sort($props);
75 var_dump($props);
H A Dproperty_exists.phpt20 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 DReflectionClass_export_basic2.phpt2 ReflectionClass::export() - ensure inherited private props are hidden.
H A DReflectionProperty_constructor_variation1.phpt2 ReflectionProperty::__construct(): ensure inherited private props can't be accessed through Reflect…
/PHP-7.2/ext/spl/tests/
H A Dbug73209.phpt7 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-7.2/Zend/tests/
H A Dbug72813.phpt7 private $props = ['a' => 'text', 'b' => 1];
11 return $this->props[$prop];
17 $this->props[$prop] = $value;
22 return [$this->props];
H A Dbug28444.phpt24 public $props = array();
35 return $this->props[$prop];
41 $this->props[$prop] = $val;
/PHP-7.2/ext/date/tests/
H A Ddate_interval_prop_dim.phpt2 Test DateInterval props with dimension handling
/PHP-7.2/ext/date/
H A Dphp_date.h139 HashTable *props; member
157 HashTable *props; member
169 HashTable *props; member
H A Dphp_date.c2281 HashTable *props; in date_object_get_properties() local
2291 return props; in date_object_get_properties()
2326 return props; in date_object_get_properties()
2404 HashTable *props; in date_object_get_properties_timezone() local
2413 return props; in date_object_get_properties_timezone()
2422 return props; in date_object_get_properties_timezone()
2490 HashTable *props; in date_object_get_properties_interval() local
2499 return props; in date_object_get_properties_interval()
2529 return props; in date_object_get_properties_interval()
5169 return props; in date_object_get_properties_period()
[all …]
/PHP-7.2/ext/mbstring/ucgendat/
H A Ducgendat.c88 static _prop_t props[NUMPROPS] = { variable
244 if (props[i].len == len && memcmp(props[i].name, name, len) == 0) in add_range()
351 if (props[i].len == len && memcmp(props[i].name, name, len) == 0) in ordered_range_insert()
/PHP-7.2/ext/spl/
H A Dspl_observer.c288 HashTable *props; in spl_object_storage_debug_info() local
296 props = Z_OBJPROP_P(obj); in spl_object_storage_debug_info()
299 ZEND_INIT_SYMTABLE_EX(debug_info, zend_hash_num_elements(props) + 1, 0); in spl_object_storage_debug_info()
300 zend_hash_copy(debug_info, props, (copy_ctor_func_t)zval_add_ref); in spl_object_storage_debug_info()
/PHP-7.2/ext/mysqli/
H A Dmysqli.c424 HashTable *retval, *props = obj->prop_handler; in mysqli_object_get_debug_info() local
428 ZEND_INIT_SYMTABLE_EX(retval, zend_hash_num_elements(props) + 1, 0); in mysqli_object_get_debug_info()
430 ZEND_HASH_FOREACH_PTR(props, entry) { in mysqli_object_get_debug_info()
/PHP-7.2/ext/zip/
H A Dphp_zip.c995 HashTable *props; in php_zip_get_properties() local
1000 props = zend_std_get_properties(object); in php_zip_get_properties()
1012 zend_hash_update(props, key, ret); in php_zip_get_properties()
1015 return props; in php_zip_get_properties()
/PHP-7.2/ext/ldap/
H A Dldap.c737 char *props = NULL; in PHP_FUNCTION() local
741 …realm_len, &sasl_authc_id, &authc_id_len, &sasl_authz_id, &authz_id_len, &props, &props_len) != SU… in PHP_FUNCTION()
751 if (props) { in PHP_FUNCTION()
752 ldap_set_option(ld->link, LDAP_OPT_X_SASL_SECPROPS, props); in PHP_FUNCTION()
3555 ZEND_ARG_INFO(0, props)
/PHP-7.2/ext/snmp/
H A Dsnmp.c2040 HashTable *props; in php_snmp_get_properties() local
2045 props = zend_std_get_properties(object); in php_snmp_get_properties()
2051 zend_hash_update(props, key, &rv); in php_snmp_get_properties()
/PHP-7.2/ext/gmp/
H A Dgmp.c434 HashTable *ht, *props = zend_std_get_properties(obj); in gmp_get_debug_info() local
439 ht = zend_array_dup(props); in gmp_get_debug_info()

Completed in 87 milliseconds