Home
last modified time | relevance | path

Searched refs:value (Results 226 – 250 of 2171) sorted by relevance

12345678910>>...87

/PHP-7.0/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.0/ext/mysqli/tests/
H A Dmysqli_fetch_assoc_bit.phpt57 $value = 0;
59 $value = $max_value;
64 $value = 0;
66 $value += mt_rand(0, $rand_max);
68 $value = mt_rand(0, $max_value);
72 $bin = ($bits < 32) ? decbin($value) : dec32bin($value, $bits);
73 $sql = sprintf("INSERT INTO test(id, bit_value) VALUES (%s, b'%s')", $value, $bin);
88 if (($value != $row['id']) || (($bin != $row['_bin']) && ($bin2 != $row['_bin']))) {
91 $bits, $value, $bits, $row['id'], $row['_bin'], $bin, $bin2);
94 if ($value != $row['bit_value']) {
[all …]
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.0/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";
80 %string|unicode%(14) "assigned value"
88 %string|unicode%(14) "assigned value"
96 [%u|b%"assigned value"]=>
97 %string|unicode%(14) "assigned value"
109 [%u|b%"assigned value"]=>
110 %string|unicode%(14) "assigned value"
122 [%u|b%"assigned value"]=>
123 %string|unicode%(14) "assigned value"
131 %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…
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 …
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…
50 …urn by ref function call, assign by reference the return value of a function that returns by value:
56 ---> 2. Via a return by ref function call, assign by reference the return value of a function that …
62 ---> 3. Via a return by ref function call, assign by reference the return value of a function that …
/PHP-7.0/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.0/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.0/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 Darray_walk_recursive_variation7.phpt24 var_dump( array_walk_recursive($input, create_function('$value', 'var_dump($value); echo "\n";')));
27 …dump( array_walk_recursive($input, create_function('$value, $key', 'var_dump($key); var_dump($valu…
30 …array_walk_recursive($input, create_function('$value, $key, $user_data', 'var_dump($key); var_dump…
33 …array_walk_recursive($input, create_function('$value, $key, $user_data', 'var_dump($key); var_dump…
H A Darray_walk_variation7.phpt24 var_dump( array_walk($input, create_function('$value', 'var_dump($value); echo "\n";')));
27 var_dump( array_walk($input, create_function('$value, $key', 'var_dump($key); var_dump($value); ech…
30 var_dump( array_walk($input, create_function('$value, $key, $user_data', 'var_dump($key); var_dump(…
33 var_dump( array_walk($input, create_function('$value, $key, $user_data', 'var_dump($key); var_dump(…
/PHP-7.0/ext/tidy/tests/
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.0/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.0/tests/basic/
H A D022.phpt7 …2%20; cookie3=val 3.; cookie 4= value 4 %3B; cookie1=bogus; %20cookie1=ignore;+cookie1=ignore;cook…
21 string(10) " value 4 ;"
23 string(7) " value"
/PHP-7.0/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.0/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"
/PHP-7.0/ext/mysqlnd/
H A Dmysqlnd_debug.h151 #define DBG_RETURN_EX(dbg_obj, value) DBG_LEAVE_EX((dbg_obj), return (value);) argument
154 #define DBG_RETURN_EX2(dbg_obj1, dbg_obj2, value) DBG_LEAVE_EX2((dbg_obj1), (dbg_obj2), return (val… argument
166 #define DBG_RETURN_EX(dbg_obj, value) return (value) argument
181 #define DBG_RETURN(value) DBG_RETURN_EX(MYSQLND_G(dbg), (value)) argument
193 #define TRACE_ALLOC_RETURN(value) DBG_RETURN_EX2(MYSQLND_G(dbg), MYSQLND_G(trace_alloc), (value)) argument
205 #define DBG_RETURN(value) return (value) argument
216 #define TRACE_ALLOC_RETURN(value) return (value) argument
/PHP-7.0/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.0/ext/wddx/tests/
H A Dbug73065.phpt18 <boolean value="keliu"></boolean>
35 <boolean value="keliu"></boolean>
46 <boolean Name="value">
47 <boolean value="keliu"></boolean>
59 <boolean value="keliu"></boolean>
71 <boolean value="keliu"></boolean>
/PHP-7.0/ext/standard/tests/strings/
H A Dstrncasecmp_basic.phpt14 var_dump( strncasecmp('Hello', 'Hi', 5) ); //expected: value < 0
15 var_dump( strncasecmp('Hi', 'Hello', 5) ); //expected: value > 0
19 var_dump( strncasecmp("Hello", "Hi", 5) ); //expected: value < 0
20 var_dump( strncasecmp("Hi", "Hello", 5) ); //expected: value > 0
27 var_dump( strncasecmp($str, "Hi", 5) ); //expected: value < 0
28 var_dump( strncasecmp("Hi", $str, 5) ); //expected: value > 0
H A Dstrncmp_basic.phpt14 var_dump( strncmp('Hello', 'Hi', 5) ); //expected: value < 0
15 var_dump( strncmp('Hi', 'Hello', 5) ); //expected: value > 0
19 var_dump( strncmp("Hello", "Hi", 5) ); //expected: value < 0
20 var_dump( strncmp("Hi", "Hello", 5) ); //expected: value > 0
27 var_dump( strncmp($str, "Hi", 5) ); //expected: value < 0
28 var_dump( strncmp("Hi", $str, 5) ); //expected: value > 0
/PHP-7.0/tests/classes/
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";

Completed in 74 milliseconds

12345678910>>...87