Home
last modified time | relevance | path

Searched refs:value (Results 26 – 50 of 2327) sorted by relevance

12345678910>>...94

/PHP-8.3/tests/output/
H A Dsapi_windows_vt100_support_winok_out-err.phpt26 - current value : bool(false)
28 - current value : bool(false)
30 - current value : bool(false)
32 - current value : bool(false)
34 - current value : bool(false)
36 - current value : bool(false)
38 - current value : bool(false)
40 - current value : bool(false)
42 - current value : bool(false)
44 - current value : bool(false)
[all …]
/PHP-8.3/ext/curl/
H A Dsync-constants.php305 foreach ($parts as $value) {
306 if (! ctype_digit($value) || strlen($value) > 3) {
310 $value = (int) $value;
312 if ($value > 255) {
316 $value = dechex($value);
318 if (strlen($value) === 1) {
319 $value = '0' . $value;
322 $hex .= $value;
/PHP-8.3/ext/standard/tests/array/
H A Darray_walk_object2.phpt13 echo "value : ";
21 echo "value : ";
71 value : int(3)
73 value : int(10)
75 value : int(20)
81 value : int(3)
82 value : int(10)
83 value : int(20)
87 value : int(3)
88 value : int(10)
[all …]
H A Darray_walk_recursive_object2.phpt13 echo "value : ";
21 echo "value : ";
73 value : int(3)
75 value : int(10)
77 value : int(20)
83 value : int(3)
84 value : int(10)
85 value : int(20)
89 value : int(3)
90 value : int(10)
[all …]
H A Darsort_variation7.phpt6 * testing arsort() by providing bool value array for $array argument with following flag values.
7 * flag value as default
13 // bool value array
16 echo "\n-- Testing arsort() by supplying bool value array, 'flag' value is default --\n";
21 echo "\n-- Testing arsort() by supplying bool value array, 'flag' value is SORT_REGULAR --\n";
26 echo "\n-- Testing arsort() by supplying bool value array, 'flag' value is SORT_NUMERIC --\n";
31 echo "\n-- Testing arsort() by supplying bool value array, 'flag' value is SORT_STRING --\n";
41 -- Testing arsort() by supplying bool value array, 'flag' value is default --
54 -- Testing arsort() by supplying bool value array, 'flag' value is SORT_REGULAR --
67 -- Testing arsort() by supplying bool value array, 'flag' value is SORT_NUMERIC --
[all …]
H A Dasort_variation7.phpt6 * testing asort() by providing bool value array for $array argument with following flag values.
7 * flag value as default
13 // bool value array
16 echo "\n-- Testing asort() by supplying bool value array, 'flag' value is default --\n";
21 echo "\n-- Testing asort() by supplying bool value array, 'flag' value is SORT_REGULAR --\n";
26 echo "\n-- Testing asort() by supplying bool value array, 'flag' value is SORT_NUMERIC --\n";
31 echo "\n-- Testing asort() by supplying bool value array, 'flag' value is SORT_STRING --\n";
41 -- Testing asort() by supplying bool value array, 'flag' value is default --
54 -- Testing asort() by supplying bool value array, 'flag' value is SORT_REGULAR --
67 -- Testing asort() by supplying bool value array, 'flag' value is SORT_NUMERIC --
[all …]
H A Dsort_variation7.phpt6 * testing sort() by providing bool value array for $array argument with following flag values.
7 * flag value as default
13 // bool value array
16 echo "\n-- Testing sort() by supplying bool value array, 'flag' value is default --\n";
21 echo "\n-- Testing sort() by supplying bool value array, 'flag' value is SORT_REGULAR --\n";
26 echo "\n-- Testing sort() by supplying bool value array, 'flag' value is SORT_NUMERIC --\n";
31 echo "\n-- Testing sort() by supplying bool value array, 'flag' value is SORT_STRING --\n";
41 -- Testing sort() by supplying bool value array, 'flag' value is default --
54 -- Testing sort() by supplying bool value array, 'flag' value is SORT_REGULAR --
67 -- Testing sort() by supplying bool value array, 'flag' value is SORT_NUMERIC --
[all …]
H A Dkrsort_variation11.phpt7 * 1.flag value as default
13 // bool value array
16 echo "\n-- Testing krsort() by supplying boolean value array, 'flag' value is default --\n";
21 echo "\n-- Testing krsort() by supplying boolean value array, 'flag' value is SORT_REGULAR --\n";
26 echo "\n-- Testing krsort() by supplying boolean value array, 'flag' value is SORT_NUMERIC --\n";
31 echo "\n-- Testing krsort() by supplying boolean value array, 'flag' value is SORT_STRING --\n";
41 -- Testing krsort() by supplying boolean value array, 'flag' value is default --
50 -- Testing krsort() by supplying boolean value array, 'flag' value is SORT_REGULAR --
59 -- Testing krsort() by supplying boolean value array, 'flag' value is SORT_NUMERIC --
68 -- Testing krsort() by supplying boolean value array, 'flag' value is SORT_STRING --
H A Dksort_variation4.phpt7 * 1.flag value as default
13 // bool value array
16 echo "\n-- Testing ksort() by supplying boolean value array, 'flag' value is default --\n";
21 echo "\n-- Testing ksort() by supplying boolean value array, 'flag' value is SORT_REGULAR --\n";
26 echo "\n-- Testing ksort() by supplying boolean value array, 'flag' value is SORT_NUMERIC --\n";
31 echo "\n-- Testing ksort() by supplying boolean value array, 'flag' value is SORT_STRING --\n";
41 -- Testing ksort() by supplying boolean value array, 'flag' value is default --
50 -- Testing ksort() by supplying boolean value array, 'flag' value is SORT_REGULAR --
59 -- Testing ksort() by supplying boolean value array, 'flag' value is SORT_NUMERIC --
68 -- Testing ksort() by supplying boolean value array, 'flag' value is SORT_STRING --
/PHP-8.3/main/
H A Dphp_ini_builder.c26 memmove(b->value + length, b->value, b->length); in php_ini_builder_prepend()
27 memcpy(b->value, src, length); in php_ini_builder_prepend()
38 b->value[b->length++] = '='; in php_ini_builder_unquoted()
40 memcpy(b->value + b->length, value, value_length); in php_ini_builder_unquoted()
43 b->value[b->length++] = '\n'; in php_ini_builder_unquoted()
53 b->value[b->length++] = '='; in php_ini_builder_quoted()
54 b->value[b->length++] = '"'; in php_ini_builder_quoted()
56 memcpy(b->value + b->length, value, value_length); in php_ini_builder_quoted()
59 b->value[b->length++] = '"'; in php_ini_builder_quoted()
60 b->value[b->length++] = '\n'; in php_ini_builder_quoted()
[all …]
/PHP-8.3/ext/intl/tests/
H A Dformatter_get_set_text_attribute.phpt86 Default value: []
88 New value: [_+_]
92 Default value: []
94 New value: [_+_]
98 Default value: [-]
100 New value: [_-_]
104 Default value: []
106 New value: [_-_]
110 Default value: [*]
112 New value: [^]
[all …]
H A Dformatter_get_set_text_attribute_var2.phpt86 Default value: []
88 New value: [_+_]
92 Default value: []
94 New value: [_+_]
98 Default value: [-]
100 New value: [_-_]
104 Default value: []
106 New value: [_-_]
110 Default value: [ ]
112 New value: [^]
[all …]
/PHP-8.3/ext/json/tests/
H A Dbug41504.phpt6 var_dump(json_decode('{"":"value"}', true));
7 var_dump(json_decode('{"":"value", "key":"value"}', true));
8 var_dump(json_decode('{"key":"value", "":"value"}', true));
15 string(5) "value"
19 string(5) "value"
21 string(5) "value"
25 string(5) "value"
27 string(5) "value"
/PHP-8.3/Zend/
H A Dzend_atomic.h44 volatile char value; member
48 _Atomic(bool) value;
52 volatile bool value; member
76 return InterlockedOr8(&obj->value, false); in zend_atomic_bool_load_ex()
80 (void)InterlockedExchange8(&obj->value, desired); in zend_atomic_bool_store_ex()
135 return __sync_fetch_and_or(&obj->value, false);
140 obj->value = desired;
151 obj->value = desired;
155 return obj->value;
159 bool prev = obj->value;
[all …]
/PHP-8.3/ext/intl/formatter/
H A Dformatter_attr.c62 if(value == -1) { in PHP_FUNCTION()
65 RETVAL_LONG(value); in PHP_FUNCTION()
114 efree(value); in PHP_FUNCTION()
115 value = value_buf; in PHP_FUNCTION()
120 INTL_METHOD_RETVAL_UTF8( nfo, value, length, ( value != value_buf ) ); in PHP_FUNCTION()
128 zval *value; in PHP_FUNCTION() local
183 char *value; in PHP_FUNCTION() local
243 efree(value); in PHP_FUNCTION()
249 INTL_METHOD_RETVAL_UTF8( nfo, value, length, ( value_buf != value ) ); in PHP_FUNCTION()
318 efree(value); in PHP_FUNCTION()
[all …]
/PHP-8.3/ext/standard/tests/general_functions/
H A Dgetopt_005.phpt4 --arg value --arg=value -avalue -a=value -a value
17 string(5) "value"
19 string(5) "value"
24 string(5) "value"
26 string(5) "value"
28 string(5) "value"
H A Dbug47859.phpt5 var_dump(parse_ini_string('*key = "*value"'));
6 var_dump(parse_ini_string('-key = "-value"'));
9 var_dump(parse_ini_string('key* = "value*"'));
10 var_dump(parse_ini_string('key.*.* = "value.*.*"'));
11 var_dump(parse_ini_string('*.*.key = "*.*.value"'));
17 string(6) "*value"
21 string(6) "-value"
29 string(6) "value*"
33 string(9) "value.*.*"
37 string(9) "*.*.value"
/PHP-8.3/tests/lang/
H A DforeachLoop.009.phpt55 key: 0; value: original.0
56 key: 1; value: original.1
57 key: 2; value: original.2
60 key: 0; value: original.0
61 key: 1; value: original.1
64 key: 0; value: original.0
65 key: 1; value: original.1
72 key: 3; value: new.0
73 key: 4; value: new.1
74 key: 5; value: new.2
[all …]
/PHP-8.3/ext/reflection/tests/
H A DReflectionClass_setStaticPropertyValue_001.phpt24 $rcA->setStaticPropertyValue("publicOverridden", "new value 3");
56 [privateOverridden] => new value 1
57 [protectedOverridden] => new value 2
58 [publicOverridden] => new value 3
64 [privateOverridden] => new value 1
65 [protectedOverridden] => new value 2
66 [publicOverridden] => new value 3
70 [privateOverridden] => new value 5
71 [protectedOverridden] => new value 6
72 [publicOverridden] => new value 7
[all …]
/PHP-8.3/ext/spl/tests/
H A DCallbackFilterIteratorTest.phpt7 function test($value, $key, $inner) {
8 return test($value, $key, $inner);
14 return test($value, $key, $inner);
18 function test($value, $key, $inner) {
20 , $value
22 , $value == $inner->current()
25 return $value === 1 || $value === 4;
44 foreach($it as $value) {
45 echo "=> $value\n";
54 foreach($it as $value) {
[all …]
H A DRecursiveCallbackFilterIteratorTest.phpt7 function test($value, $key, $inner) {
8 return test($value, $key, $inner);
14 return test($value, $key, $inner);
18 function test($value, $key, $inner) {
23 , print_r($value, true)
25 , $value == $inner->current()
28 return $value === 1 || $value === 4;
48 foreach($it as $value) {
49 echo "=> $value\n";
59 foreach($it as $value) {
[all …]
/PHP-8.3/sapi/phpdbg/tests/
H A Dbug73927.phpt13 w $value
20 >00019: if ($value < 100) {
21 00020: $lower[] = $value;
24 >00019: if ($value < 100) {
25 00020: $lower[] = $value;
41 function doCoolStuff($value)
43 $value++;
49 foreach ($example as $key => $value) {
50 if ($value < 100) {
51 $lower[] = $value;
[all …]
/PHP-8.3/ext/standard/tests/network/
H A Dsetcookie.phpt9 setcookie('name', 'value');
10 setcookie('name', 'space value');
11 setcookie('name', 'value', 0);
12 setcookie('name', 'value', $tsp = time() + 5);
14 setcookie('name', 'value', $tsc = time());
15 setcookie('name', 'value', 0, '/path/');
26 'Set-Cookie: name=value',
27 'Set-Cookie: name=space%20value',
28 'Set-Cookie: name=value',
34 'Set-Cookie: name=value; secure',
[all …]
/PHP-8.3/Zend/tests/weakrefs/
H A Dweakrefs_006.phpt33 ["value"]=>
41 ["value"]=>
49 ["value"]=>
57 ["value"]=>
65 ["value"]=>
73 ["value"]=>
81 ["value"]=>
89 ["value"]=>
97 ["value"]=>
105 ["value"]=>
[all …]
/PHP-8.3/ext/standard/tests/streams/
H A Dnon_finite_values.phpt6 foreach ([NAN, -NAN, INF, -INF] as $value) {
8 stream_socket_accept($socket, $value);
15 foreach ([NAN, -NAN, INF, -INF] as $value) {
17 stream_socket_client("tcp://0.0.0.0:14781", timeout: $value);
24 stream_socket_accept(): Argument #2 ($timeout) must be a finite value
25 stream_socket_accept(): Argument #2 ($timeout) must be a finite value
26 stream_socket_accept(): Argument #2 ($timeout) must be a finite value
27 stream_socket_accept(): Argument #2 ($timeout) must be a finite value
28 stream_socket_client(): Argument #4 ($timeout) must be a finite value
29 stream_socket_client(): Argument #4 ($timeout) must be a finite value
[all …]

Completed in 28 milliseconds

12345678910>>...94