Home
last modified time | relevance | path

Searched refs:prop (Results 26 – 50 of 81) sorted by relevance

1234

/PHP-5.5/ext/reflection/tests/
H A Dbug48336.phpt9 static protected $prop;
13 static protected $prop;
23 static protected $prop;
30 $rp = new ReflectionProperty($class, 'prop');
H A DReflectionMethod_invokeArgs_basic.phpt7 public $prop = 2;
10 echo "Called foo(), property = $this->prop\n";
26 $testClassInstance->prop = "Hello";
55 ["prop"]=>
61 ["prop"]=>
H A Dbug40794.phpt14 foreach($reflect->getProperties() as $prop)
16 $array[$prop->getName()] = $prop->getValue($obj);
H A Dbug49719.phpt34 $prop = $b2->getProperty('a');
35 $prop->setAccessible(true);
36 var_dump($prop->getValue(new b2));
H A DReflectionMethod_invoke_basic.phpt7 public $prop = 2;
10 echo "Called foo(), property = $this->prop\n";
44 $testClassInstance->prop = "Hello";
75 ["prop"]=>
81 ["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";
H A DReflectionMethod_invokeArgs_error3.phpt7 public $prop = 2;
10 echo "Called foo(), property = $this->prop\n";
30 $testClassInstance->prop = "Hello";
/PHP-5.5/tests/classes/
H A Dimplicit_instantiation_001.phpt21 $c->$name->prop++;
25 $c->$name->prop = "Implicit instantiation!";
29 $c->$name->prop .= " Implicit instantiation!";
44 Notice: Undefined property: stdClass::$prop in %s on line 18
54 Notice: Undefined property: stdClass::$prop in %s on line 26
62 Notice: Undefined property: stdClass::$prop in %s on line 18
72 Notice: Undefined property: stdClass::$prop in %s on line 26
80 Notice: Undefined property: stdClass::$prop in %s on line 18
139 [%u|b%"prop"]=>
144 [%u|b%"prop"]=>
[all …]
/PHP-5.5/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"]=>
H A DarrayObject_exchangeArray_basic2.phpt13 $obj->key = 'normal object prop';
48 string(18) "normal object prop"
53 string(18) "normal object prop"
/PHP-5.5/Zend/tests/
H A Dresult_unused.phpt17 public $prop = array(3);
23 $x->prop;
H A Dbug65969.phpt6 list($a,$b) = $obj->prop = [1,2];
H A Dmagic_by_ref_002.phpt11 $t->prop = 1;
H A Dmagic_by_ref_003.phpt11 $name = "prop";
H A Dmagic_by_ref_004.phpt11 $name = "prop";
H A Dmagic_by_ref_001.phpt11 $name = "prop";
H A Dmagic_by_ref_005.phpt11 $name = "prop";
H A Dadd_002.phpt9 $o->prop = "value";
/PHP-5.5/ext/standard/tests/serialize/
H A Dbug55798.phpt2 Bug #55798 (serialize followed by unserialize with numeric object prop. gives integer prop)
/PHP-5.5/ext/opcache/
H A Dzend_persist.c439 static void zend_persist_property_info(zend_property_info *prop TSRMLS_DC)
441 zend_accel_store_interned_string(prop->name, prop->name_length + 1);
442 if (prop->doc_comment) {
444 zend_accel_store(prop->doc_comment, prop->doc_comment_len + 1);
446 if (!zend_shared_alloc_get_xlat_entry(prop->doc_comment)) {
447 zend_shared_alloc_register_xlat_entry(prop->doc_comment, prop->doc_comment);
448 efree((char*)prop->doc_comment);
450 prop->doc_comment = NULL;
451 prop->doc_comment_len = 0;
590 static int zend_update_property_info_ce(zend_property_info *prop TSRMLS_DC)
[all …]
H A Dzend_persist_calc.c223 static uint zend_persist_property_info_calc(zend_property_info *prop TSRMLS_DC)
226 ADD_INTERNED_STRING(prop->name, prop->name_length + 1);
227 if (ZCG(accel_directives).save_comments && prop->doc_comment) {
228 ADD_DUP_SIZE(prop->doc_comment, prop->doc_comment_len + 1);
/PHP-5.5/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;
H A Dpdo_mysql_stmt_fetch_serialize.phpt45 public function __set($prop, $value) {
46 printf("%s(%s, %s)\n", __METHOD__, $prop, var_export($value, true));
47 $this->{$prop} = $value;
50 public function __get($prop) {
51 printf("%s(%s)\n", __METHOD__, $prop);
/PHP-5.5/ext/reflection/
H A Dphp_reflection.c186 zend_property_info prop; member
559 zval **prop; in _class_string() local
931 if (!prop) { in _property_string()
1337 prop = tmp_info; in reflection_property_factory()
1346 ZVAL_STRINGL(classname, prop->ce->name, prop->ce->name_length, 1); in reflection_property_factory()
1352 reference->prop = *prop; in reflection_property_factory()
3370 prop = NULL; in add_class_vars()
3378 if (!prop) { in add_class_vars()
3384 *prop_copy = *prop; in add_class_vars()
3437 if (!prop) { in ZEND_METHOD()
[all …]

Completed in 54 milliseconds

1234