Home
last modified time | relevance | path

Searched refs:prop (Results 1 – 25 of 81) sorted by path

1234

/PHP-5.5/
H A DNEWS3795 prop. gives integer prop). (Gustavo)
6467 - Fixed bug #45614 (ArrayIterator::current(), ::key() can show 1st private prop
/PHP-5.5/Zend/
H A DZEND_CHANGES40 $object->prop = 'Hello';
43 $other->prop = 'Bye';
47 print $object->prop; // still shows 'Hello'
1000 public $prop;
1009 ReflectionProperty::export('Foo', 'prop');
H A Dzend_builtin_functions.c908 zval *prop, *prop_copy; in add_class_vars() local
926 prop = NULL; in add_class_vars()
929 prop = ce->default_static_members_table[prop_info->offset]; in add_class_vars()
931 prop = ce->default_properties_table[prop_info->offset]; in add_class_vars()
934 if (!prop) { in add_class_vars()
940 *prop_copy = *prop; in add_class_vars()
/PHP-5.5/Zend/tests/
H A Dadd_002.phpt9 $o->prop = "value";
H A Dadd_003.phpt9 $o->prop = "value";
H A Dbug28442.phpt8 static $prop;
13 static $prop;
21 ClassA::$prop = 'A';
22 ClassB::$prop = 'B';
23 ClassC::$prop = 'C';
24 var_dump(ClassA::$prop);
25 var_dump(ClassB::$prop);
26 var_dump(ClassC::$prop);
29 ClassA::$prop = 'A2';
35 ClassB::$prop = 'B2';
[all …]
H A Dbug28444.phpt32 function __get($prop)
34 echo __METHOD__ . "($prop)\n";
35 return $this->props[$prop];
38 function __set($prop, $val)
40 echo __METHOD__ . "($prop,$val)\n";
41 $this->props[$prop] = $val;
H A Dbug41075.phpt15 $var = $this->blah->prop = "string";
H A Dbug52484.phpt7 function __unset($prop) {
8 unset($this->$prop);
13 $prop = null;
15 unset($a->$prop);
H A Dbug52484_2.phpt7 function __set($prop, $val) {
8 $this->$prop = $val;
13 $prop = null;
15 $a->$prop = 2;
H A Dbug52484_3.phpt7 function __get($prop) {
8 var_dump($this->$prop);
13 $prop = null;
15 var_dump($a->$prop);
H A Dbug65969.phpt6 list($a,$b) = $obj->prop = [1,2];
H A Dmagic_by_ref_001.phpt11 $name = "prop";
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_005.phpt11 $name = "prop";
H A Dresult_unused.phpt17 public $prop = array(3);
23 $x->prop;
/PHP-5.5/Zend/tests/traits/
H A Dbug60809.phpt24 public $prop = "ops";
/PHP-5.5/ext/curl/
H A Dinterface.c2620 zval *prop; in _php_curl_setopt() local
2623prop = zend_read_property(curl_CURLFile_class, *current, "name", sizeof("name")-1, 0 TSRMLS_CC); in _php_curl_setopt()
2624 if(Z_TYPE_P(prop) != IS_STRING) { in _php_curl_setopt()
2627 postval = Z_STRVAL_P(prop); in _php_curl_setopt()
2633prop = zend_read_property(curl_CURLFile_class, *current, "mime", sizeof("mime")-1, 0 TSRMLS_CC); in _php_curl_setopt()
2634 if(Z_TYPE_P(prop) == IS_STRING && Z_STRLEN_P(prop) > 0) { in _php_curl_setopt()
2635 type = Z_STRVAL_P(prop); in _php_curl_setopt()
2637prop = zend_read_property(curl_CURLFile_class, *current, "postname", sizeof("postname")-1, 0 TSRML… in _php_curl_setopt()
2638 if(Z_TYPE_P(prop) == IS_STRING && Z_STRLEN_P(prop) > 0) { in _php_curl_setopt()
2639 filename = Z_STRVAL_P(prop); in _php_curl_setopt()
/PHP-5.5/ext/dom/
H A Ddocumentfragment.c91 xmlAttrPtr prop; in php_dom_xmlSetTreeDoc() local
96 prop = tree->properties; in php_dom_xmlSetTreeDoc()
97 while (prop != NULL) { in php_dom_xmlSetTreeDoc()
98 prop->doc = doc; in php_dom_xmlSetTreeDoc()
99 if (prop->children) { in php_dom_xmlSetTreeDoc()
100 cur = prop->children; in php_dom_xmlSetTreeDoc()
106 prop = prop->next; in php_dom_xmlSetTreeDoc()
/PHP-5.5/ext/json/tests/
H A D004.phpt9 $a->prop = $a;
27 ["prop"]=>
35 string(22) "{"prop":{"prop":null}}"
/PHP-5.5/ext/mbstring/oniguruma/
H A Dregenc.c864 onigenc_property_list_add_property(UChar* name, const OnigCodePoint* prop, in onigenc_property_list_add_property() argument
878 (*plist)[*pnum] = prop; in onigenc_property_list_add_property()
H A Dregint.h802 extern int onigenc_property_list_add_property P_((UChar* name, const OnigCodePoint* prop, hash_tabl…
H A Dregparse.c2304 } prop; member
2943 tok->u.prop.not = 0; in fetch_token_in_cc()
2948 tok->u.prop.not = 1; in fetch_token_in_cc()
2953 tok->u.prop.not = 0; in fetch_token_in_cc()
2958 tok->u.prop.not = 1; in fetch_token_in_cc()
2963 tok->u.prop.not = 0; in fetch_token_in_cc()
2968 tok->u.prop.not = 1; in fetch_token_in_cc()
2995 tok->u.prop.not = (tok->u.prop.not == 0 ? 1 : 0); in fetch_token_in_cc()
3560 tok->u.prop.not = (tok->u.prop.not == 0 ? 1 : 0); in fetch_token()
4321 r = add_ctype_to_cc(cc, tok->u.prop.ctype, tok->u.prop.not, env); in parse_char_class()
[all …]

Completed in 101 milliseconds

1234