Home
last modified time | relevance | path

Searched refs:properties (Results 1 – 25 of 419) sorted by relevance

12345678910>>...17

/php-src/Zend/
H A Dzend_objects.c35 object->properties = NULL; in _zend_object_std_init()
57 if (object->properties) { in zend_object_std_dtor()
59 if (EXPECTED(GC_DELREF(object->properties) == 0) in zend_object_std_dtor()
61 zend_array_destroy(object->properties); in zend_object_std_dtor()
227 GC_ADDREF(old_object->properties); in zend_objects_clone_members()
229 new_object->properties = old_object->properties; in zend_objects_clone_members()
234 if (old_object->properties && in zend_objects_clone_members()
240 if (!new_object->properties) { in zend_objects_clone_members()
241 new_object->properties = zend_new_array(zend_hash_num_elements(old_object->properties)); in zend_objects_clone_members()
244 …zend_hash_extend(new_object->properties, new_object->properties->nNumUsed + zend_hash_num_elements… in zend_objects_clone_members()
[all …]
/php-src/ext/reflection/tests/
H A Dbug38132.phpt11 $properties = $class->getStaticProperties();
12 var_dump($properties, array_keys($properties));
13 var_dump(isset($properties['*bar']));
14 var_dump(isset($properties["\0*\0bar"]));
15 var_dump(isset($properties["bar"]));
H A DReflectionClass_getProperties_003.phpt24 echo "No properties:";
27 echo "Public properties:";
30 echo "Private properties:";
33 echo "Public or static properties:";
36 echo "Private or static properties:";
40 No properties:array(0) {
42 Public properties:array(4) {
72 Private properties:array(4) {
102 Public or static properties:array(6) {
146 Private or static properties:array(6) {
H A DReflectionProperty_isInitialized.phpt20 echo "Static properties:\n";
25 echo "Declared properties:\n";
31 echo "Declared properties after unset:\n";
39 echo "Dynamic properties:\n";
92 Static properties:
96 Declared properties:
100 Declared properties after unset:
104 Dynamic properties:
113 ReflectionProperty::isInitialized(): Argument #1 ($object) must be provided for instance properties
H A DReflectionObject___toString_basic1.phpt2 ReflectionObject::__toString() : very basic test with no dynamic properties
21 - Static properties [0] {
31 - Dynamic properties [0] {
H A DReflectionObject___toString_basic2.phpt2 ReflectionObject::__toString() : very basic test with dynamic properties
23 - Static properties [0] {
33 - Dynamic properties [2] {
H A D024.phpt2 ReflectionObject::__toString (filtering privates/protected dynamic properties)
26 - Static properties [0] {
38 - Dynamic properties [1] {
H A DReflectionClass_toString_003.phpt35 - Static properties [0] {
59 - Static properties [0] {
83 - Static properties [0] {
104 - Static properties [0] {
H A DReflectionClass_toString_002.phpt35 - Static properties [0] {
59 - Static properties [0] {
83 - Static properties [0] {
107 - Static properties [0] {
H A Dstatic_properties_002.phpt2 Reflection and inheriting static properties
46 echo 'Number of properties: '. count($r->getStaticProperties()) . "\n";
59 Number of properties: 1
/php-src/tests/classes/
H A Dstatic_properties_004.phpt2 Inherited static properties cannot be separated from their reference set.
9 echo "\nInherited static properties refer to the same value across classes:\n";
16 echo "\nReferences cannot be used to split the properties:\n";
22 Inherited static properties refer to the same value across classes:
32 References cannot be used to split the properties:
H A Dconstants_basic_004.phpt2 Test properties with array default values using class constants as keys and values.
32 // Should also include inherited properties from B.
35 echo "\nStatic properties:\n";
38 echo "\nInstance properties:\n";
45 Static properties:
67 Instance properties:
H A Dinterface_member.phpt2 ZE2 An interface cannot have properties
11 Fatal error: Interfaces may not include properties in %s on line %d
/php-src/Zend/tests/
H A Dbug73998.phpt11 $properties = get_object_vars($a);
12 var_dump(array_key_exists(1234, $properties));
13 echo "Value: {$properties[1234]}\n";
H A Dforeach_018.phpt2 Foreach on stdClass with properties looking like mangled properties
H A Dmagic_methods_020.phpt7 public static function __set_state(int $properties) {}
12 Fatal error: Foo::__set_state(): Parameter #1 ($properties) must be of type array when declared in …
/php-src/ext/spl/tests/
H A Dgh10907.phpt5 echo "Test without rebuilding properties\n";
15 echo "Test with rebuilding properties\n";
19 var_dump($array); // Rebuilds properties
26 echo "Test with partially rebuilding properties\n";
29 var_dump($array); // Rebuilds properties
51 Test without rebuilding properties
66 Test with rebuilding properties
87 Test with partially rebuilding properties
H A DSplFixedArray_immediate_gc.phpt17 // As of php 8.3, this only contain object properties (dynamic properties and declared subclass pro…
/php-src/Zend/tests/prop_const_expr/
H A Dnon_enums_rhs.phpt2 Error when fetching properties on non-enums in constant expressions is catchable
25 Fetching properties on non-enums in constant expressions is not allowed
26 Fetching properties on non-enums in constant expressions is not allowed
/php-src/tests/lang/
H A DforeachLoopObjects.005.phpt2 Foreach loop tests - removing properties before and after the current property during the loop.
14 echo "\nRemoving properties before the current element from an iterated object.\n";
29 echo "\nRemoving properties before the current element from an iterated object.\n";
46 Removing properties before the current element from an iterated object.
62 Removing properties before the current element from an iterated object.
/php-src/Zend/tests/enum/
H A Dno-properties.phpt2 Enum disallows properties
12 Fatal error: Enum Foo cannot include properties in %s on line %d
H A Dno-static-properties.phpt2 Enum disallows static properties
12 Fatal error: Enum Foo cannot include properties in %s on line %d
/php-src/ext/phar/tests/zip/
H A Dbug48791.phpt12properties style:font-name="Arial"/></style:style><text:list-style style:name="L1"><text:list-leve…
/php-src/Zend/tests/type_declarations/
H A Dstatic_type_property.phpt2 Static type is not allowed in properties
6 // Testing ?static here, to avoid ambiguity with static properties.
/php-src/ext/opcache/tests/
H A Dssa_bug_007.phpt7 function render($properties) {
8 foreach ($properties as $key => $value) {

Completed in 137 milliseconds

12345678910>>...17