Home
last modified time | relevance | path

Searched refs:values (Results 101 – 125 of 1096) sorted by relevance

12345678910>>...44

/php-src/ext/standard/tests/strings/
H A Dchr_variation1.phpt2 Test chr() function : usage variations - test values for $ascii argument
18 // array with different values for $input
21 // integer values
27 // float values
32 // boolean values
H A Djoin_basic.phpt11 // pieces as array with numeric values
14 // pieces as array with strings values
19 // pieces as associative array (numeric values)
24 // pieces as associative array (string/numeric values)
H A Dchunk_split_variation7.phpt2 Test chunk_split() function : usage variations - different double quoted values for 'str' argument
10 echo "*** Testing chunk_split() : with different double quoted values for 'str' argument ***\n";
16 // different values for 'str'
17 $values = array(
33 for($count = 0; $count < count($values); $count++) {
35 var_dump( chunk_split( $values[$count], $chunklen, $ending) );
41 *** Testing chunk_split() : with different double quoted values for 'str' argument ***
H A Dvprintf_variation8.phpt2 Test vprintf() function : usage variations - string formats with non-string values
6 * Test vprintf() when different string formats and non-string values are passed to
10 echo "*** Testing vprintf() : string formats and non-string values ***\n";
20 // Arrays of non string values for the format defined in $format.
21 // Each sub array contains non string values which correspond to each format in $format
24 // array of float values
31 // array of int values
56 // and with non-string values from the above $args_array array
68 *** Testing vprintf() : string formats and non-string values ***
/php-src/ext/mbstring/tests/
H A Dmb_convert_encoding_array2.phpt90 Warning: mb_convert_encoding(): Cannot convert recursively referenced values in %s on line %d
98 Warning: mb_convert_encoding(): Cannot convert recursively referenced values in %s on line %d
106 Warning: mb_convert_encoding(): Cannot convert recursively referenced values in %s on line %d
124 Warning: mb_convert_encoding(): Cannot convert recursively referenced values in %s on line %d
132 Warning: mb_convert_encoding(): Cannot convert recursively referenced values in %s on line %d
140 Warning: mb_convert_encoding(): Cannot convert recursively referenced values in %s on line %d
158 Warning: mb_convert_encoding(): Cannot convert recursively referenced values in %s on line %d
166 Warning: mb_convert_encoding(): Cannot convert recursively referenced values in %s on line %d
174 Warning: mb_convert_encoding(): Cannot convert recursively referenced values in %s on line %d
192 Warning: mb_convert_encoding(): Cannot convert recursively referenced values in %s on line %d
[all …]
/php-src/ext/pdo/tests/
H A Dpecl_bug_5809.phpt21 $values = array(1);
22 var_dump($values);
24 $stmt->execute($values);
25 var_dump($values);
/php-src/ext/standard/tests/math/
H A Dis_finite_basic.phpt5 $values = array(234,
19 for ($i = 0; $i < count($values); $i++) {
20 $res = is_finite($values[$i]);
H A Dis_infinite_basic.phpt5 $values = array(234,
19 for ($i = 0; $i < count($values); $i++) {
20 $res = is_infinite($values[$i]);
H A Dis_nan_basic.phpt5 $values = array(234,
20 for ($i = 0; $i < count($values); $i++) {
21 $res = is_nan($values[$i]);
H A Dabs_basic.phpt9 $values = array(23,
24 for ($i = 0; $i < count($values); $i++) {
25 $res = abs($values[$i]);
/php-src/ext/standard/tests/array/
H A Dsizeof_variation2.phpt2 Test sizeof() function : usage variations - different array values for 'var' argument
10 echo "--- Testing sizeof() with different array values for 'var' argument ---\n";
12 // array containing different types of array values for 'var' argument
13 $values = array (
30 // loop through each element of the values array for 'var' argument
33 for($i = 0; $i < count($values); $i++)
36 $var = $values[$i];
57 --- Testing sizeof() with different array values for 'var' argument ---
H A Darray_rand_variation3.phpt14 // array with int values
17 // array with float values
26 // array with bool values
29 // array with hexa values
32 // array with null values
44 echo "\n*** Testing array_rand() with arrays having different types of values ***\n";
66 *** Testing array_rand() with arrays having different types of values ***
H A Duasort_variation5.phpt49 echo "-- Sorting Single Quoted String values --\n";
58 echo "-- Sorting Double Quoted String values --\n";
64 echo "-- Sorting Heredoc String values --\n";
72 -- Sorting Single Quoted String values --
96 -- Sorting Double Quoted String values --
120 -- Sorting Heredoc String values --
H A Darray_pad_variation4.phpt6 * Passing binary values to $pad_value argument and testing whether
8 * The $input and $pad_size arguments passed are fixed values.
11 echo "*** Testing array_pad() : Passing binary values to \$pad_value argument ***\n";
26 *** Testing array_pad() : Passing binary values to $pad_value argument ***
H A Darray_push_basic.phpt15 echo "\n-- Push values onto an indexed array --\n";
21 echo "\n-- Push values onto an associative array --\n";
30 -- Push values onto an indexed array --
45 -- Push values onto an associative array --
H A Darray_combine_variation3.phpt6 * Passing different types of arrays to both $keys and $values arguments and testing whether
33 // heredoc with quoted strings and numeric values
43 /*1*/ array(1, 2), // with default keys and numeric values
44 array(1.1, 2.2), // with default keys & float values
45 array(false,true), // with default keys and boolean values
53 /*9*/ array(1 => "one", 2 => "two", 3 => "three"), // explicit numeric keys, string values
54 array("one" => 1, "two" => 2, "three" => 3 ), // string keys & numeric values
55 array( 1 => 10, 2 => 20, 4 => 40, 3 => 30), // explicit numeric keys and numeric values
59 // associative array, containing null/empty/boolean values as key/value
71 // same arrays are passed to both $keys and $values
[all …]
H A Darray_sum_variation3.phpt2 Test array_sum() function : usage variations - array with different float values
6 * sum of array containing different float values
9 echo "*** Testing array_sum() : array with different float values ***\n";
41 *** Testing array_sum() : array with different float values ***
H A Darray_diff_variation4.phpt2 Test array_diff() function : usage variations - array with different data types as values
7 * data types as values in place of $arr2
24 //array of values to iterate over
25 $values = array(
92 foreach($values as $value) {
/php-src/ext/standard/tests/general_functions/
H A Dget_cfg_var_variation5.phpt2 Test function get_cfg_var() by substituting argument 1 with int values.
14 echo "*** Test substituting argument 1 with int values ***\n";
31 *** Test substituting argument 1 with int values ***
/php-src/ext/session/tests/
H A D006.phpt35 echo "original values:\n";
46 echo "values after session:\n";
52 original values:
64 values after session:
H A D026.phpt35 echo "original values:\n";
48 echo "values after session:\n";
53 original values:
65 values after session:
/php-src/ext/reflection/tests/
H A DReflectionClass_setStaticPropertyValue_001.phpt20 echo "Set static values in A:\n";
27 echo "\nSet static values in B:\n";
36 echo "\nSet non-existent values from A with no default value:\n";
53 Set static values in A:
61 Set static values in B:
75 Set non-existent values from A with no default value:
/php-src/ext/posix/tests/
H A Dposix_setuid_variation5.phpt2 Test function posix_setuid() by substituting argument 1 with int values.
17 echo "*** Test substituting argument 1 with int values ***\n";
33 *** Test substituting argument 1 with int values ***
H A Dposix_seteuid_variation5.phpt2 Test function posix_seteuid() by substituting argument 1 with int values.
17 echo "*** Test substituting argument 1 with int values ***\n";
33 *** Test substituting argument 1 with int values ***
H A Dposix_setgid_variation5.phpt2 Test function posix_setgid() by substituting argument 1 with int values.
17 echo "*** Test substituting argument 1 with int values ***\n";
33 *** Test substituting argument 1 with int values ***

Completed in 24 milliseconds

12345678910>>...44