Home
last modified time | relevance | path

Searched refs:prop (Results 76 – 100 of 172) sorted by relevance

1234567

/PHP-7.4/Zend/tests/type_declarations/
H A Dtyped_properties_018.phpt12 $prop = $reflector->getProperty("qux");
14 var_dump($prop->getType()->getName());
H A Dtyped_properties_100.phpt7 private int $prop;
15 var_dump($test->prop);
H A Dtyped_properties_084.phpt12 public Foo $prop;
18 public Bar $prop;
H A Dtyped_properties_033.phpt20 foreach ($foo->fetch() as &$prop) {
21 $prop += 1;
/PHP-7.4/Zend/tests/
H A Dbug78787.phpt7 private $prop;
11 private $prop;
H A Dbug78182.phpt6 $propName = 'prop';
13 ["prop"]=>
H A Dbug71539_5.phpt6 $array['']->prop =& $array[0];
17 ["prop"]=>
H A Dassign_obj_ref_byval_function.phpt11 $obj->prop =& notRef();
18 ["prop"]=>
H A Dresult_unused.phpt17 public $prop = array(3);
23 $x->prop;
H A Dclass_constant_to_reference_cached.phpt9 private $prop;
12 $this->prop = self::TEST;
H A Dthrowing_overloaded_compound_assign_op.phpt24 $test2->prop %= 0;
42 ["prop"]=>
H A Dbug78921.phpt25 public static $prop = 'my property';
29 $reflectionProperty = $reflectionClass->getProperty('prop');
/PHP-7.4/ext/spl/tests/
H A DSplFixedArray_serialize.phpt9 $obj->prop = 'value';
30 O:13:"SplFixedArray":5:{i:0;s:3:"foo";i:1;N;i:2;i:42;i:3;O:8:"stdClass":1:{s:4:"prop";s:5:"value";}…
37 ["prop"]=>
/PHP-7.4/Zend/tests/assert/
H A Dbug70208.phpt11 protected $prop = 1;
15 var_dump($this->prop);
/PHP-7.4/ext/reflection/tests/
H A DReflectionMethod_invoke_basic.phpt7 public $prop = 2;
10 echo "Called foo(), property = $this->prop\n";
48 $testClassInstance->prop = "Hello";
79 ["prop"]=>
85 ["prop"]=>
H A DReflectionProperty_getDeclaringClass_variation1.phpt7 public $prop;
13 $propInfo = new ReflectionProperty('B', 'prop');
H A DReflectionMethod_invoke_error1.phpt7 public $prop = 2;
10 echo "Called foo(), property = $this->prop\n";
28 $testClassInstance->prop = "Hello";
/PHP-7.4/ext/standard/tests/serialize/
H A Dbug55798.phpt2 Bug #55798 (serialize followed by unserialize with numeric object prop. gives integer prop)
/PHP-7.4/ext/soap/tests/
H A Dbug71711.phpt16 $data->prop =& $ref;
22 …e="SOAP-ENC:Struct"><prop SOAP-ENC:arrayType="xsd:string[1]" xsi:type="SOAP-ENC:Array"><item xsi:t…
/PHP-7.4/ext/opcache/
H A Dzend_persist_calc.c301 zend_property_info *prop = Z_PTR_P(zv); in zend_persist_property_info_calc() local
303 if (!zend_shared_alloc_get_xlat_entry(prop)) { in zend_persist_property_info_calc()
304 zend_shared_alloc_register_xlat_entry(prop, prop); in zend_persist_property_info_calc()
306 ADD_INTERNED_STRING(prop->name); in zend_persist_property_info_calc()
307 if (ZEND_TYPE_IS_NAME(prop->type)) { in zend_persist_property_info_calc()
308 zend_string *class_name = ZEND_TYPE_NAME(prop->type); in zend_persist_property_info_calc()
310 prop->type = ZEND_TYPE_ENCODE_CLASS(class_name, ZEND_TYPE_ALLOW_NULL(prop->type)); in zend_persist_property_info_calc()
313 ADD_STRING(prop->doc_comment); in zend_persist_property_info_calc()
333 zend_property_info *prop; in check_property_type_resolution() local
340 ZEND_HASH_FOREACH_PTR(&ce->properties_info, prop) { in check_property_type_resolution()
[all …]
/PHP-7.4/ext/standard/tests/class_object/
H A Dget_object_vars_variation_005.phpt7 public $prop;
37 ["prop"]=>
/PHP-7.4/Zend/tests/generators/
H A Dget_return_types.phpt31 return $obj->prop; // VAR
35 $gen = gen4((object) ['prop' => 321]);
/PHP-7.4/Zend/
H A Dzend_exceptions.c413 zval *prop, rv; in ZEND_METHOD() local
418 ZVAL_DEREF(prop); in ZEND_METHOD()
427 zval *prop, rv; in ZEND_METHOD() local
432 ZVAL_DEREF(prop); in ZEND_METHOD()
441 zval *prop, rv; in ZEND_METHOD() local
446 ZVAL_DEREF(prop); in ZEND_METHOD()
455 zval *prop, rv; in ZEND_METHOD() local
460 ZVAL_DEREF(prop); in ZEND_METHOD()
469 zval *prop, rv; in ZEND_METHOD() local
474 ZVAL_DEREF(prop); in ZEND_METHOD()
[all …]
/PHP-7.4/ext/pdo_mysql/tests/
H A Dpdo_mysql_stmt_fetchobject.phpt47 public function __set($prop, $value) {
50 $prop, var_export($value, true), $this->set_calls, self::$static_set_calls);
51 if ("" != $prop)
52 $this->{$prop} = $value;
/PHP-7.4/ext/opcache/tests/
H A Dpreload_loadable_classes_3.inc4 protected Foo $prop;

Completed in 28 milliseconds

1234567