Home
last modified time | relevance | path

Searched refs:value (Results 51 – 75 of 2100) sorted by last modified time

12345678910>>...84

/PHP-5.5/tests/classes/
H A Dstatic_properties_004.phpt9 echo "\nInherited static properties refer to the same value across classes:\n";
23 Inherited static properties refer to the same value across classes:
H A Dtostring_001.phpt129 string(53) "Method test3::__toString() must return a string value"
H A Dtostring_004.phpt51 Error: 4096 - Method badToString::__toString() must return a string value
55 Error: 4096 - Method badToString::__toString() must return a string value
H A Dunset_properties.phpt20 public function __set($name, $value)
22 $this->$name = $value;
23 echo '__set "' . $name . '" to "' . $value . '"';
86 echo $o->setPublicProperty('new publicProperty value via setter');
91 $o->publicProperty = 'new publicProperty value via public access';
136 __set "publicProperty" to "new publicProperty value via setter"
137 new publicProperty value via setter
140 new publicProperty value via public access
147 new protectedProperty value via setter
152 __set "privateProperty" to "new privateProperty value via setter"
[all …]
H A Dimplicit_instantiation_001.phpt18 foreach($c as $name => $value) {
22 $c->$name = $value; // reset value in case implicit conversion was successful
26 $c->$name = $value; // reset value in case implicit conversion was successful
42 Warning: Creating default object from empty value in %s on line 18
48 Warning: Creating default object from empty value in %s on line 22
52 Warning: Creating default object from empty value in %s on line 26
60 Warning: Creating default object from empty value in %s on line 18
66 Warning: Creating default object from empty value in %s on line 22
70 Warning: Creating default object from empty value in %s on line 26
78 Warning: Creating default object from empty value in %s on line 18
[all …]
H A Dincdec_property_001.phpt9 function __set($property, $value) {
11 $this->real_a = $value;
H A Dincdec_property_002.phpt9 function __set($property, $value) {
11 $this->real_a = $value;
H A Dincdec_property_003.phpt9 function __set($property, $value) {
11 $this->real_a = $value;
H A Dincdec_property_004.phpt9 function __set($property, $value) {
11 $this->real_a = $value;
H A Dinterface_optional_arg_002.phpt2 default argument value in interface implementation
H A Dinterface_optional_arg_003.phpt2 default argument value in and in implementing class with interface in included file
H A Diterators_006.phpt50 foreach ($array as $property => $value) {
51 print "$property: $value\n";
63 foreach ($array as $property => $value) {
64 print "$property: $value\n";
69 foreach ($array as $property => $value) {
70 print "$property: $value\n";
H A Dnew_001.phpt32 Deprecated: Assigning the return value of new by reference is deprecated in %s on line 23
H A Darray_access_008.phpt21 function offsetSet($index, $value) {
22 $this->person[$index] = $value;
H A Darray_access_009.phpt11 function proxySet($element, $index, $value);
42 function offsetSet($index, $value) {
43 echo __METHOD__ . "($this->element, $index, $value)\n";
44 $this->object->proxySet($this->element, $index, $value);
72 function offsetSet($index, $value)
74 $this->person[$index] = $value;
87 function proxySet($element, $index, $value)
89 $this->person[$element][$index] = $value;
H A Darray_access_010.phpt30 function offsetSet($index, $value) {
31 echo __METHOD__ . "(Array, $index, $value)\n";
32 $this->element[$index] = $value;
60 function offsetSet($index, $value)
62 $this->person[$index] = $value;
H A Darray_access_011.phpt32 function offsetSet($index, $value) {
33 echo __METHOD__ . "($this->element, $index, $value)\n";
34 $this->oarray[$this->element][$index] = $value;
69 function offsetSet($index, $value)
71 $this->person[$index] = $value;
H A Darray_access_012.phpt11 public function offsetSet($index, $value) {
12 $this->data[$index] = $value;
H A Dassign_op_property_001.phpt9 function __set($property, $value) {
11 $this->real_a = $value;
H A Dbug63462.phpt25 function __set($name, $value) {
27 $this->$name = $value;
46 $test->nonExisting = 'value';
47 $test->publicProperty = 'value';
48 $test->protectedProperty = 'value';
49 $test->privateProperty = 'value';
H A Dconstants_basic_004.phpt15 const VALUE = "value";
49 string(5) "value"
53 string(5) "value"
57 string(5) "value"
61 string(5) "value"
65 string(5) "value"
73 string(5) "value"
80 string(5) "value"
87 string(5) "value"
92 string(5) "value"
[all …]
H A Dconstants_error_004.phpt2 Class constant whose initial value refereces a non-existent class
H A Darray_access_005.phpt21 function offsetSet($index, $value) {
22 $this->person[$index] = $value;
H A Darray_access_006.phpt21 function offsetSet($index, $value) {
22 $this->realArray[$index] = $value;
/PHP-5.5/
H A Dserver-tests.php107 $value = trim($setting[1]);
108 $ini_settings[$name] = $value;
117 foreach($ini_settings as $name => $value) {
118 $value = addslashes($value);
547 $value = trim($line[1]);
548 $info[$name] = $value;
644 if (isset($value)) unset($value);
646 @$value = $argv[$i++];
651 include($value);
665 if ($this->xargs[$opt][1] && isset($value))
[all …]

Completed in 31 milliseconds

12345678910>>...84