Searched refs:__set (Results 1 – 25 of 84) sorted by relevance
1234
/PHP-7.3/ext/pdo_mysql/tests/ |
H A D | pdo_mysql_stmt_fetchobject.phpt | 84 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-7.3/Zend/tests/ |
H A D | magic_methods_008.phpt | 2 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 D | magic_methods_007.phpt | 2 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 D | bug63462.phpt | 25 function __set($name, $value) { 26 echo '__set ' . $name . "\n"; 69 __set nonExisting 70 __set publicProperty 71 __set protectedProperty 72 __set privateProperty
|
H A D | magic_by_ref_002.phpt | 2 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 D | magic_by_ref_001.phpt | 2 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 D | bug52484_2.phpt | 2 Bug #52484.2 (__set() ignores setting properties with empty names) 7 function __set($prop, $val) { 21 #0 %s(%d): A->__set('\x00', 2)
|
H A D | bug30889.phpt | 2 Bug #30889 (Conflict between __get/__set and ++ operator) 12 function __set($name, $value) 24 $test->a++; // __get(), then __set()
|
H A D | bug71359.phpt | 18 public function __set($name, $value) { 19 echo "__set($name)\n"; 47 __set(zero) 49 __set(one)
|
H A D | bug38461.phpt | 2 Bug #38461 (setting private attribute with __set() produces segfault) 8 function __set( $var, $value )
|
H A D | bug52879.phpt | 2 Bug #52879 (Objects unreferenced in __get, __set, __isset or __unset can be freed too early) 7 public function __set($property,$value) {
|
H A D | bug34467.phpt | 2 Bug #34467 (foreach + __get + __set incosistency) 8 function __set ($key, $value) {
|
H A D | bug30394.phpt | 2 Bug #30394 (Assignment operators yield wrong result with __get/__set) 12 public function __set( $what, $value )
|
H A D | objects_021.phpt | 2 Testing magic methods __set, __get and __call in cascade 13 public function __set($a, $b) {
|
H A D | objects_029.phpt | 7 public function __set($a, $b) { 16 public function __set($a, $b) {
|
H A D | objects_030.phpt | 7 public function __set($a, $b) { 16 public function __set($a, $b) {
|
H A D | bug34893.phpt | 10 function __set($name, $value) { 19 function __set($name, $value) {
|
/PHP-7.3/tests/classes/ |
H A D | __set__get_003.phpt | 2 ZE2 __set() signature check 6 function __set() { 12 Fatal error: Method Test::__set() must take exactly 2 arguments in %s__set__get_003.php on line %d
|
H A D | bug63462.phpt | 25 function __set($name, $value) { 26 echo '__set ' . $name . "\n"; 65 __set nonExisting 66 __set publicProperty 67 __set protectedProperty 68 __set privateProperty
|
H A D | __set_data_corrupt.phpt | 2 ZE2 Data corruption in __set 17 function __set($prop, $val) 19 echo "__set";
|
H A D | __set__get_005.phpt | 2 ZE2 __set() and __get() 20 function __set($name, $val) { 38 function __set($name, $val) { 54 Test::__set
|
H A D | unset_properties.phpt | 20 public function __set($name, $value) 23 echo '__set "' . $name . '" to "' . $value . '"'; 135 __set "publicProperty" to "new publicProperty value via setter" 137 __set "publicProperty" to "new publicProperty value via public access" 144 __set "protectedProperty" to "new protectedProperty value via setter" 151 __set "privateProperty" to "new privateProperty value via setter"
|
H A D | __set__get_001.phpt | 2 ZE2 __set() and __get() 22 function __set($nm, $val) { 37 // this doesn't go through __set()... should it?
|
H A D | __set__get_004.phpt | 2 ZE2 __set() and __get() 18 function __set($name, $val) {
|
/PHP-7.3/ext/spl/tests/ |
H A D | bug45622b.phpt | 7 function __set($n, $v) { echo "In " . __METHOD__ . "!\n"; } 16 echo "Doesn't trigger __set.\n"; 29 Doesn't trigger __set.
|
Completed in 26 milliseconds
1234