Home
last modified time | relevance | path

Searched refs:value (Results 251 – 275 of 2314) sorted by relevance

1...<<11121314151617181920>>...93

/PHP-7.2/ext/tidy/tests/
H A D024.phpt16 <wps:value></wps:value>
22 'new-blocklevel-tags' => 'wps:block,wps:var,wps:value',
37 <wps:block>%w<wps:var>%w<wps:value></wps:value>%w</wps:var>%w</wps:block>
H A D010.phpt16 ["value"]=>
40 ["value"]=>
66 ["value"]=>
113 ["value"]=>
144 ["value"]=>
171 ["value"]=>
197 ["value"]=>
220 ["value"]=>
244 ["value"]=>
273 ["value"]=>
[all …]
/PHP-7.2/ext/dom/tests/
H A Ddomobject_debug_handler.phpt24 [implementation] => (object value omitted)
25 [documentElement] => (object value omitted)
46 [childNodes] => (object value omitted)
47 [firstChild] => (object value omitted)
48 [lastChild] => (object value omitted)
/PHP-7.2/tests/classes/
H A Diterators_006.phpt47 foreach ($array as $property => $value) {
48 print "$property: $value\n";
60 foreach ($array as $property => $value) {
61 print "$property: $value\n";
66 foreach ($array as $property => $value) {
67 print "$property: $value\n";
/PHP-7.2/tests/lang/
H A DreturnByReference.006.phpt23 …rn by ref function call, assign by reference the return value of a function that returns by value:…
30 echo "\n---> 2. Via a return by ref function call, assign by reference the return value of a functi…
37 echo "\n---> 3. Via a return by ref function call, assign by reference the return value of a functi…
46 …urn by ref function call, assign by reference the return value of a function that returns by value:
52 ---> 2. Via a return by ref function call, assign by reference the return value of a function that …
58 ---> 3. Via a return by ref function call, assign by reference the return value of a function that …
H A Dengine_assignExecutionOrder_001.phpt13 return "assigned value";
78 %string|unicode%(14) "assigned value"
86 %string|unicode%(14) "assigned value"
94 ["assigned value"]=>
95 %string|unicode%(14) "assigned value"
107 ["assigned value"]=>
108 %string|unicode%(14) "assigned value"
120 ["assigned value"]=>
121 %string|unicode%(14) "assigned value"
129 %string|unicode%(14) "assigned value"
[all …]
H A DreturnByReference.007.phpt25 …rn by ref function call, assign by reference the return value of a function that returns by value:…
32 echo "\n---> 2. Via a return by ref function call, assign by reference the return value of a functi…
39 echo "\n---> 3. Via a return by ref function call, assign by reference the return value of a functi…
48 …urn by ref function call, assign by reference the return value of a function that returns by value:
54 ---> 2. Via a return by ref function call, assign by reference the return value of a function that …
60 ---> 3. Via a return by ref function call, assign by reference the return value of a function that …
H A DreturnByReference.008.phpt26 …rn by ref function call, assign by reference the return value of a function that returns by value:…
33 echo "\n---> 2. Via a return by ref function call, assign by reference the return value of a functi…
40 echo "\n---> 3. Via a return by ref function call, assign by reference the return value of a functi…
49 …urn by ref function call, assign by reference the return value of a function that returns by value:
55 ---> 2. Via a return by ref function call, assign by reference the return value of a function that …
61 ---> 3. Via a return by ref function call, assign by reference the return value of a function that …
/PHP-7.2/ext/standard/tests/array/
H A Drsort_object1.phpt20 // initializing object member value
21 function __construct($value){
22 $this->class_value = $value;
31 // initializing object member value
32 function __construct($value){
33 $this->class_value = $value;
36 // return string value
38 return (string)$this->value;
61 // testing rsort() function by supplying integer object array, flag value is defualt
66 // testing rsort() function by supplying string object array, flag value is defualt
[all …]
H A Deach_variation2.phpt6 * Description: Return the currently pointed key..value pair in the passed array,
129 ["value"]=>
141 ["value"]=>
153 ["value"]=>
165 ["value"]=>
177 ["value"]=>
192 ["value"]=>
205 ["value"]=>
218 ["value"]=>
230 ["value"]=>
[all …]
H A Darray_walk_recursive_variation7.phpt24 var_dump( array_walk_recursive($input, function($value) { var_dump($value); echo "\n"; }));
27 var_dump( array_walk_recursive($input, function($value, $key) { var_dump($key); var_dump($value); e…
30 …r_dump( array_walk_recursive($input, function($value, $key, $user_data) { var_dump($key); var_dump…
33 …r_dump( array_walk_recursive($input, function($value, $key, $user_data) { var_dump($key); var_dump…
H A Darray_walk_variation7.phpt24 var_dump( array_walk($input, function($value) { var_dump($value); echo "\n"; }));
27 var_dump( array_walk($input, function($value, $key) { var_dump($key); var_dump($value); echo "\n"; …
30 var_dump( array_walk($input, function($value, $key, $user_data) { var_dump($key); var_dump($value);…
33 var_dump( array_walk($input, function($value, $key, $user_data) { var_dump($key); var_dump($value);…
/PHP-7.2/Zend/tests/
H A Dbug72813.phpt14 public function __set($prop, $value)
16 if ($prop === 'b') $value = [$value];
17 $this->props[$prop] = $value;
H A Dbug34893.phpt10 function __set($name, $value) {
11 $this->$name = $value;
19 function __set($name, $value) {
20 $this->$name = $value;
/PHP-7.2/ext/dom/
H A Dcdatasection.c33 ZEND_ARG_INFO(0, value)
56 char *value = NULL; in PHP_METHOD() local
59 if (zend_parse_parameters_throw(ZEND_NUM_ARGS(), "s", &value, &value_len) == FAILURE) { in PHP_METHOD()
63 nodep = xmlNewCDataBlock(NULL, (xmlChar *) value, value_len); in PHP_METHOD()
H A Dcomment.c33 ZEND_ARG_INFO(0, value)
56 char *value = NULL; in PHP_METHOD() local
59 if (zend_parse_parameters_throw(ZEND_NUM_ARGS(), "|s", &value, &value_len) == FAILURE) { in PHP_METHOD()
63 nodep = xmlNewComment((xmlChar *) value); in PHP_METHOD()
/PHP-7.2/ext/oci8/tests/
H A Dconn_attr_3.phpt32 // Open another connect and verify the value.
42 // Open another connect and verify the value.
54 // Open another connect and verify the value.
69 The value of ACTION is TASK1
72 The value of ACTION is
76 The value of MODULE is PHP TEST2
79 The value of MODULE is PHP TEST2
84 The value of CLIENT_INFO is INFO13
85 The value of CLIENT_IDENTIFIER is ID003
88 The value of CLIENT_INFO is
[all …]
/PHP-7.2/ext/mysqlnd/
H A Dmysqlnd_debug.h159 #define DBG_RETURN_EX(dbg_obj, value) DBG_LEAVE_EX((dbg_obj), return (value);) argument
162 #define DBG_RETURN_EX2(dbg_obj1, dbg_obj2, value) DBG_LEAVE_EX2((dbg_obj1), (dbg_obj2), return (val… argument
174 #define DBG_RETURN_EX(dbg_obj, value) return (value) argument
189 #define DBG_RETURN(value) DBG_RETURN_EX(MYSQLND_G(dbg), (value)) argument
201 #define TRACE_ALLOC_RETURN(value) DBG_RETURN_EX2(MYSQLND_G(dbg), MYSQLND_G(trace_alloc), (value)) argument
213 #define DBG_RETURN(value) return (value) argument
224 #define TRACE_ALLOC_RETURN(value) return (value) argument
/PHP-7.2/ext/spl/tests/
H A Dbug34548.phpt10 foreach($dataArray as $value) $this->append($value);
13 public function offsetSet($index, $value)
15 parent::offsetSet($index, $value);
/PHP-7.2/ext/standard/tests/general_functions/
H A Dgetopt_003.phpt4 -vvv --v -a value --another value -1111 -2 --12 --0 --0 --1 -v
28 string(5) "value"
30 string(5) "value"
H A Dfloatval.phpt6 * Description: Returns the float value of var.
36 float values, expected output:float value for valid floating point number */
38 foreach ($valid_floats as $value ) {
39 var_dump( floatval($value) );
45 float values, expected output:float value for valid floating point number */
47 foreach ($valid_floats as $value ) {
48 var_dump( doubleval($value) );
62 -2147483648, // max negative integer value
63 2147483648, // max positive integer value
159 Notice: A non well formed numeric value encountered in %s on line 69
[all …]
/PHP-7.2/ext/mysqli/tests/
H A Dmysqli_stmt_get_result_bit.phpt63 $value = 0;
65 $value = $max_value;
70 $value = 0;
72 $value += mt_rand(0, $rand_max);
74 $value = mt_rand(0, $max_value);
78 $bin = ($bits < 32) ? decbin($value) : dec32bin($value, $bits);
79 $sql = sprintf("INSERT INTO test(id, bit_value) VALUES (%s, b'%s')", $value, $bin);
100 if (($value != $row['id']) || (($bin != $row['_bin']) && ($bin2 != $row['_bin']))) {
103 $bits, $value, $bits, $row['id'], $row['_bin'], $bin, $bin2);
106 if ($value != $row['bit_value']) {
[all …]
/PHP-7.2/ext/standard/tests/math/
H A Dhypot_basic.phpt74 Notice: A non well formed numeric value encountered in %s on line %d
102 Notice: A non well formed numeric value encountered in %s on line %d
130 Notice: A non well formed numeric value encountered in %s on line %d
158 Notice: A non well formed numeric value encountered in %s on line %d
186 Notice: A non well formed numeric value encountered in %s on line %d
214 Notice: A non well formed numeric value encountered in %s on line %d
242 Notice: A non well formed numeric value encountered in %s on line %d
270 Notice: A non well formed numeric value encountered in %s on line %d
298 Notice: A non well formed numeric value encountered in %s on line %d
308 Notice: A non well formed numeric value encountered in %s on line %d
[all …]
/PHP-7.2/ext/opcache/tests/
H A Dbug73789.phpt12 public function getType($value): int
16 case ctype_alpha($value[0]):
17 $name = 'Lexer::T_' . strtoupper($value);
23 case $value === '.':
/PHP-7.2/sapi/phpdbg/tests/
H A Dwatch_003.phpt20 Old value: 1
21 New value: 2
25 Old value: 2
26 New value: 3

Completed in 37 milliseconds

1...<<11121314151617181920>>...93