Home
last modified time | relevance | path

Searched refs:values (Results 51 – 75 of 1183) sorted by relevance

12345678910>>...48

/PHP-8.0/ext/standard/tests/strings/
H A Dstrrchr_variation11.phpt23 // array with different values
24 $values = array (
26 // integer values
32 // float values
39 // array values
46 // boolean values
59 // null values
76 for($index = 0; $index < count($values); $index ++) {
79 var_dump( strrchr($values[$index], $values[$index]) );
H A Dvprintf_variation10.phpt2 Test vprintf() function : usage variations - char formats with non-char values
11 * Test vprintf() when different char formats and non-char values are passed to
15 echo "*** Testing vprintf() : char formats and non-char values ***\n";
25 // Arrays of non char values for the format defined in $format.
26 // Each sub array contains non char values which correspond to each format in $format
29 // array of float values
36 // array of int values
67 // and with non-char values from the above $args_array array
79 *** Testing vprintf() : char formats and non-char values ***
H A Dvprintf_variation16.phpt2 Test vprintf() function : usage variations - unsigned formats with signed and other types of values
10 * Test vprintf() when different unsigned formats and signed values and other types of values
14 echo "*** Testing vprintf() : unsigned formats and signed & other types of values ***\n";
24 // Arrays of signed and other type of values for the format defined in $format.
25 // Each sub array contains signed values which correspond to each format in $format
28 // array of float values
59 // and with signed and other types of values from the above $args_array array
70 *** Testing vprintf() : unsigned formats and signed & other types of values ***
H A Dvprintf_variation16_64bit.phpt2 Test vprintf() function : usage variations - unsigned formats with signed and other types of values
10 * Test vprintf() when different unsigned formats and signed values and other types of values
14 echo "*** Testing vprintf() : unsigned formats and signed & other types of values ***\n";
24 // Arrays of signed and other type of values for the format defined in $format.
25 // Each sub array contains signed values which correspond to each format in $format
28 // array of float values
59 // and with signed and other types of values from the above $args_array array
71 *** Testing vprintf() : unsigned formats and signed & other types of values ***
H A Dvprintf_variation6.phpt2 Test vprintf() function : usage variations - float formats with non-float values
6 * Test vprintf() when different float formats and non-float values are passed to
10 echo "*** Testing vprintf() : float formats and non-float values ***\n";
20 // Arrays of non float values for the format defined in $format.
21 // Each sub array contains non float values which correspond to each format in $format
24 // array of int values
55 // and with non-float values from the above $args_array array
67 *** Testing vprintf() : float formats and non-float values ***
H A Dvprintf_variation11.phpt2 Test vprintf() function : usage variations - octal formats with octal values
10 * Test vprintf() when different octal formats and octal values are passed to
14 echo "*** Testing vprintf() : octal formats with octal values ***\n";
28 // Arrays of octal values for the format defined in $format.
29 // Each sub array contains octal values which correspond to each format string in $format
43 // and with octal values from the above $args_array array
55 *** Testing vprintf() : octal formats with octal values ***
H A Dvprintf_variation11_64bit.phpt2 Test vprintf() function : usage variations - octal formats with octal values
10 * Test vprintf() when different octal formats and octal values are passed to
14 echo "*** Testing vprintf() : octal formats with octal values ***\n";
28 // Arrays of octal values for the format defined in $format.
29 // Each sub array contains octal values which correspond to each format string in $format
43 // and with octal values from the above $args_array array
55 *** Testing vprintf() : octal formats with octal values ***
H A Dvprintf_variation17.phpt2 Test vsprintf() function : usage variations - scientific formats with scientific values
6 * Test vprintf() when different scientific formats and scientific values
10 echo "*** Testing vprintf() : scientific formats and scientific values ***\n";
21 // Arrays of scientific values for the format defined in $format.
22 // Each sub array contains scientific values which correspond to each format string in $format
32 // and with signed and other types of values from the above $args_array array
44 *** Testing vprintf() : scientific formats and scientific values ***
H A Dvprintf_variation14.phpt2 Test vprintf() function : usage variations - hexa formats with non-hexa values
10 * Test vprintf() when different hexa formats and non-hexa values are passed to
14 echo "*** Testing vprintf() : hexa formats and non-hexa values ***\n";
24 // Arrays of non hexa values for the format defined in $format.
25 // Each sub array contains non hexa values which correspond to each format in $format
28 // array of float values
35 // array of int values
66 // and with non-hexa values from the above $args_array array
79 *** Testing vprintf() : hexa formats and non-hexa values ***
H A Dvprintf_variation14_64bit.phpt2 Test vprintf() function : usage variations - hexa formats with non-hexa values
10 * Test vprintf() when different hexa formats and non-hexa values are passed to
14 echo "*** Testing vprintf() : hexa formats and non-hexa values ***\n";
24 // Arrays of non hexa values for the format defined in $format.
25 // Each sub array contains non hexa values which correspond to each format in $format
28 // array of float values
35 // array of int values
66 // and with non-hexa values from the above $args_array array
79 *** Testing vprintf() : hexa formats and non-hexa values ***
H A Dchr_variation1.phpt2 Test chr() function : usage variations - test values for $ascii argument
22 // array with different values for $input
25 // integer values
31 // float values
36 // boolean values
42 // null values
/PHP-8.0/ext/pdo_oci/tests/
H A Dpdo_oci_class_constants.phpt24 $values = [];
28 if (!isset($values[$value])) {
29 $values[$value] = [$name];
31 $values[$value][] = $name;
54 if (!empty($values)) {
55 foreach ($values as $value => $constants) {
/PHP-8.0/ext/standard/tests/math/
H A Dacosh_variation.phpt12 //Test acosh with a different input values
14 $values = array(23,
28 for ($i = 0; $i < count($values); $i++) {
29 $res = acosh($values[$i]);
H A Dlog10_variation.phpt12 //Test log10 with a different input values
14 $values = array(23,
28 for ($i = 0; $i < count($values); $i++) {
29 $res = log10($values[$i]);
H A Dacos_variation.phpt12 //Test acos with a different input values
14 $values = array(23,
28 for ($i = 0; $i < count($values); $i++) {
29 $res = acos($values[$i]);
H A Dasin_variation.phpt12 //Test asin with a different input values
14 $values = array(23,
28 for ($i = 0; $i < count($values); $i++) {
29 $res = asin($values[$i]);
H A Datanh_variation.phpt12 //Test atanh with a different input values
14 $values = array(23,
28 for ($i = 0; $i < count($values); $i++) {
29 $res = atanh($values[$i]);
H A Dsqrt_variation.phpt12 //Test sqrt with a different input values
15 $values = array(23,
29 for ($i = 0; $i < count($values); $i++) {
30 $res = sqrt($values[$i]);
/PHP-8.0/ext/standard/tests/array/
H A Darray_fill_basic.phpt7 // calling the array_fill with all possible valid values for 'val' argument
14 // array of possible valid values for 'val' argument
15 $values = array (
28 for($i = 0; $i < count($values); $i ++)
31 $val = $values[$i];
H A Darray_combine_variation6.phpt7 * binary values for $keys and $values argument.
12 // array with binary values
16 // array with binary value for $keys and $values argument
19 // array with binary value for $values argument
H A Darray_fill_variation4.phpt15 // array of possible valid values for 'val' argument
16 $values = array (
27 echo "*** Filling 2 dimensional array with all basic valid values ***\n";
29 for($i =0; $i < count($values); $i ++)
32 $val = $values[$i];
43 *** Filling 2 dimensional array with all basic valid values ***
H A Darray_values_variation4.phpt16 echo "\n-- Array values of a two-dimensional array --\n";
19 echo "\n-- Array values of a sub-array --\n";
24 echo "\n-- Array values of an infinitely recursive array --\n";
32 -- Array values of a two-dimensional array --
49 -- Array values of a sub-array --
59 -- Array values of an infinitely recursive array --
/PHP-8.0/ext/standard/tests/general_functions/
H A Dvar_export_basic1.phpt2 Test var_export() function with integer values
11 echo "*** Testing var_export() with integer values ***\n";
12 // different integer values
34 /* Loop to check for above integer values with var_export() */
35 echo "\n*** Output for integer values ***\n";
47 *** Testing var_export() with integer values ***
49 *** Output for integer values ***
H A Dvar_export_basic1_32.phpt2 Test var_export() function with integer values
11 echo "*** Testing var_export() with integer values ***\n";
12 // different integer values
34 /* Loop to check for above integer values with var_export() */
35 echo "\n*** Output for integer values ***\n";
47 *** Testing var_export() with integer values ***
49 *** Output for integer values ***
/PHP-8.0/ext/date/tests/
H A Dgmmktime_variation8.phpt2 Test gmmktime() function : usage variation - Passing octal and hexadecimal values to arguments.
15 echo "\n-- Testing gmmktime() function with supplying octal values to arguments --\n";
26 echo "\n-- Testing gmmktime() function with supplying hexa decimal values to arguments --\n";
32 -- Testing gmmktime() function with supplying octal values to arguments --
35 -- Testing gmmktime() function with supplying hexa decimal values to arguments --

Completed in 64 milliseconds

12345678910>>...48