Home
last modified time | relevance | path

Searched refs:__set (Results 1 – 25 of 66) sorted by relevance

123

/PHP-5.5/ext/pdo_mysql/tests/
H A Dpdo_mysql_stmt_fetchobject.phpt84 myclass::__set(id, -'1'-) 1
85 myclass::__set(, -''-) 2
86 myclass::__set(null, -NULL-) 3
87 myclass::__set(, -''-) 4
89 myclass::__set(id, -'2'-) 1
90 myclass::__set(, -''-) 2
91 myclass::__set(null, -NULL-) 3
92 myclass::__set(, -''-) 4
94 myclass::__set(id, -'3'-) 1
95 myclass::__set(, -''-) 2
[all …]
/PHP-5.5/Zend/tests/
H A Dmagic_methods_008.phpt2 Testing __set implementation with wrong declaration
7 abstract function __set($a, $b);
11 private function __set($a, $b) {
17 Warning: The magic method __set() must have public visibility and cannot be static in %s on line %d
19 Fatal error: Access level to a::__set() must be public (as in class b) in %s on line %d
H A Dmagic_methods_007.phpt2 Testing __set() declaration in abstract class with wrong modifier
7 abstract protected function __set($a);
12 Warning: The magic method __set() must have public visibility and cannot be static in %s on line %d
14 Fatal error: Method b::__set() must take exactly 2 arguments in %s on line %d
H A Dbug63462.phpt25 function __set($name, $value) {
26 echo '__set ' . $name . "\n";
70 __set nonExisting
71 __set publicProperty
72 __set protectedProperty
73 __set privateProperty
H A Dmagic_by_ref_002.phpt2 passing second parameter of __set() by ref
7 function __set($name, &$val) { }
16 Fatal error: Method test::__set() cannot take arguments by reference in %s on line %d
H A Dmagic_by_ref_001.phpt2 passing first parameter of __set() by ref
7 function __set(&$name, $val) { }
17 Fatal error: Method test::__set() cannot take arguments by reference in %s on line %d
H A Dbug30889.phpt2 Bug #30889 (Conflict between __get/__set and ++ operator)
12 function __set($name, $value)
24 $test->a++; // __get(), then __set()
H A Dbug38461.phpt2 Bug #38461 (setting private attribute with __set() produces segfault)
8 function __set( $var, $value )
H A Dbug52484_2.phpt2 Bug #52484.2 (__set() ignores setting properties with empty names)
7 function __set($prop, $val) {
H A Dbug52879.phpt2 Bug #52879 (Objects unreferenced in __get, __set, __isset or __unset can be freed too early)
7 public function __set($property,$value) {
H A Dbug34467.phpt2 Bug #34467 (foreach + __get + __set incosistency)
8 function __set ($key, $value) {
H A Dbug30394.phpt2 Bug #30394 (Assignment operators yield wrong result with __get/__set)
12 public function __set( $what, $value )
H A Dobjects_029.phpt7 public function __set($a, $b) {
16 public function __set($a, $b) {
H A Dobjects_030.phpt7 public function __set($a, $b) {
16 public function __set($a, $b) {
H A Dobjects_021.phpt2 Testing magic methods __set, __get and __call in cascade
13 public function __set($a, $b) {
H A Dbug28444.phpt38 function __set($prop, $val)
65 Overloaded::__set(y,3)
70 Overloaded::__set(z,)
H A Dbug34893.phpt10 function __set($name, $value) {
19 function __set($name, $value) {
/PHP-5.5/tests/classes/
H A Dbug63462.phpt25 function __set($name, $value) {
26 echo '__set ' . $name . "\n";
66 __set nonExisting
67 __set publicProperty
68 __set protectedProperty
69 __set privateProperty
H A D__set__get_003.phpt2 ZE2 __set() signature check
8 function __set() {
14 Fatal error: Method Test::__set() must take exactly 2 arguments in %s__set__get_003.php on line %d
H A D__set_data_corrupt.phpt2 ZE2 Data corruption in __set
19 function __set($prop, $val)
21 echo "__set";
H A D__set__get_005.phpt2 ZE2 __set() and __get()
22 function __set($name, $val) {
40 function __set($name, $val) {
56 Test::__set
H A Dunset_properties.phpt20 public function __set($name, $value)
23 echo '__set "' . $name . '" to "' . $value . '"';
136 __set "publicProperty" to "new publicProperty value via setter"
138 __set "publicProperty" to "new publicProperty value via public access"
145 __set "protectedProperty" to "new protectedProperty value via setter"
152 __set "privateProperty" to "new privateProperty value via setter"
H A D__set__get_001.phpt2 ZE2 __set() and __get()
24 function __set($nm, $val) {
39 // this doesn't go through __set()... should it?
H A D__set__get_004.phpt2 ZE2 __set() and __get()
20 function __set($name, $val) {
/PHP-5.5/ext/spl/tests/
H A Dbug45622b.phpt7 function __set($n, $v) { echo "In " . __METHOD__ . "!\n"; }
16 echo "Doesn't trigger __set.\n";
29 Doesn't trigger __set.

Completed in 164 milliseconds

123