Home
last modified time | relevance | path

Searched refs:value (Results 251 – 275 of 2421) sorted by path

1...<<11121314151617181920>>...97

/php-src/Zend/tests/generators/
H A Dyield_without_value.phpt2 yield can be used without a value
/php-src/Zend/tests/
H A Dget_class_vars_typed_props.phpt2 get_class_vars() returns uninitialized typed properties with a null value
H A Dgh11244-001.phpt8 foreach ($data as $key => &$value) {
9 echo "$value\n";
10 if ($value === 1) {
12 echo "unset $value\n";
H A Dgh11244-002.phpt8 foreach ($data as $key => &$value) {
9 echo "$value\n";
10 if ($value === 1) {
12 echo "unset $value\n";
H A Dgh11244-003.phpt9 foreach ($data as $key => &$value) {
10 echo "$value\n";
11 if ($value === 1) {
13 echo "unset $value\n";
H A Dgh11244-005.phpt8 foreach ($data as $key => &$value) {
9 echo "$value\n";
10 if ($value === 1) {
12 echo "unset $value\n";
H A Dgh11580.phpt2 GH-11580: assert() with ??= operator can lead to use-of-uninitialized-value
H A Dgh13178_1.phpt6 foreach ($array as $key => &$value) {
H A Dgh13178_2.phpt6 foreach ($array as $key => &$value) {
H A Dgh13178_3.phpt8 foreach ($data as $key => &$value) {
9 var_dump($value);
10 if ($value === 'baz') {
H A Dgh13178_5.phpt6 foreach ($array as &$value) {
7 var_dump($value);
8 if ($value === 2) {
H A Dgh8841.phpt21 Fatal error: A void function must not return a value in %s on line %d
/php-src/Zend/tests/gh10168/
H A Dassign_prop.phpt7 public ?Test $value;
13 $box->value = null;
18 var_dump($box->value = new Test);
22 $box->value = new Test;
H A Dassign_prop_ref.phpt7 public ?Test $value;
13 $box->value = null;
19 var_dump($box->value = &$tmp);
23 $box->value = new Test;
H A Dassign_prop_ref_with_prop_ref.phpt7 public ?Test $value;
15 $box->value = null;
21 var_dump($box->value = &$tmp);
25 $box->value = new Test;
26 Test::$test = &$box->value;
H A Dassign_prop_with_prop_ref.phpt7 public ?Test $value;
15 $box->value = null;
20 var_dump($box->value = new Test);
24 $box->value = new Test;
25 Test::$test = &$box->value;
H A Dassign_untyped_prop.phpt7 public $value;
13 $box->value = null;
18 var_dump($box->value = new Test);
22 $box->value = new Test;
H A Dassign_untyped_prop_ref.phpt7 public $value;
13 $box->value = null;
19 var_dump($box->value = &$tmp);
23 $box->value = new Test;
H A Dassign_untyped_prop_ref_with_prop_ref.phpt7 public $value;
15 $box->value = null;
21 var_dump($box->value = &$tmp);
25 $box->value = new Test;
26 Test::$test = &$box->value;
H A Dassign_untyped_prop_with_prop_ref.phpt7 public $value;
15 $box->value = null;
20 var_dump($box->value = new Test);
24 $box->value = new Test;
25 Test::$test = &$box->value;
/php-src/Zend/tests/in-de-crement/
H A Dincdec_bool_exception.phpt11 foreach ($values as $value) {
13 $value++;
18 $value--;
H A Dincdec_strings.phpt24 echo "Initial value:";
25 var_dump($value);
26 $value++;
27 echo "Result value:";
28 var_dump($value);
50 var_dump($value);
51 $value--;
53 var_dump($value);
67 Result value:int(1)
92 Result value:int(-1)
[all …]
H A Dincdec_strings_exception.phpt28 foreach ($values as $value) {
30 $value++;
34 var_dump($value);
36 $value--;
40 var_dump($value);
H A Dincdec_types.phpt26 var_dump($value);
27 $value++;
29 var_dump($value);
36 var_dump($value);
37 $value--;
50 Initial value:NULL
51 Result value:int(1)
61 Result value:int(1)
73 Result value:int(1)
75 Initial value:NULL
[all …]
H A Dincrement_function_return_error.phpt2 It's not possible to increment the return value of a function
14 Fatal error: Can't use function return value in write context in %s on line %d

Completed in 23 milliseconds

1...<<11121314151617181920>>...97