Home
last modified time | relevance | path

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

12345678910>>...44

/php-src/ext/standard/tests/math/
H A Dlog10_variation.phpt12 //Test log10 with a different input values
14 $values = array(23,
27 for ($i = 0; $i < count($values); $i++) {
28 $res = log10($values[$i]);
H A Dsinh_variation.phpt12 //Test sinh with a different input values
14 $values = array(23,
27 for ($i = 0; $i < count($values); $i++) {
28 $res = sinh($values[$i]);
H A Dacos_variation.phpt12 //Test acos with a different input values
14 $values = array(23,
27 for ($i = 0; $i < count($values); $i++) {
28 $res = acos($values[$i]);
H A Dasin_variation.phpt12 //Test asin with a different input values
14 $values = array(23,
27 for ($i = 0; $i < count($values); $i++) {
28 $res = asin($values[$i]);
H A Datanh_variation.phpt12 //Test atanh with a different input values
14 $values = array(23,
27 for ($i = 0; $i < count($values); $i++) {
28 $res = atanh($values[$i]);
H A Dsqrt_variation.phpt12 //Test sqrt with a different input values
15 $values = array(23,
28 for ($i = 0; $i < count($values); $i++) {
29 $res = sqrt($values[$i]);
/php-src/ext/standard/tests/strings/
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 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_variation4.phpt2 Test vprintf() function : usage variations - int formats with non-integer values
10 * Test vprintf() when different int formats and non-int values are passed to
14 echo "*** Testing vprintf() : int formats and non-integer values ***\n";
24 // Arrays of non int values for the format defined in $format.
25 // Each sub array contains non int values which correspond to each format in $format
28 // array of float values
59 // and with non-int values from the above $args_array array
71 *** Testing vprintf() : int formats and non-integer values ***
H A Dvprintf_variation4_64bit.phpt2 Test vprintf() function : usage variations - int formats with non-integer values
10 * Test vprintf() when different int formats and non-int values are passed to
14 echo "*** Testing vprintf() : int formats and non-integer values ***\n";
24 // Arrays of non int values for the format defined in $format.
25 // Each sub array contains non int values which correspond to each format in $format
28 // array of float values
59 // and with non-int values from the above $args_array array
71 *** Testing vprintf() : int formats and non-integer values ***
H A Djoin_error1.phpt30 // array with different values
31 $values = array (
32 // integer values
38 // float values
45 // boolean values
51 // string values
62 // null values
78 // when $pieces argument is supplied with different values
81 for($index = 0; $index < count($values); $index ++) {
83 $pieces = $values [$index];
[all …]
H A Djoin_variation3.phpt2 Test join() function : usage variations - different values for 'pieces' argument
6 * test join() by giving different pieces values
12 array(1, 2), // array with default keys and numrice values
13 array(1.1, 2.2), // array with default keys & float values
15 array(false,true), // array with default keys and boolean values
21 array(1 => "one", 2 => "two", 3 => "three"), // explicit numeric keys, string values
22 array("one" => 1, "two" => 2, "three" => 3 ), // string keys & numeric values
23 array( 1 => 10, 2 => 20, 4 => 40, 3 => 30), // explicit numeric keys and numeric values
27 // associative array, containing null/empty/boolean values as key/value
H A Dvprintf_variation13.phpt2 Test vprintf() function : usage variations - hexa formats with hexa values
10 * Test vprintf() when different hexa formats and hexa values are passed to
14 echo "*** Testing vprintf() : hexa formats with hexa values ***\n";
28 // Arrays of hexa values for the format defined in $format.
29 // Each sub array contains hexa values which correspond to each format string in $format
43 // and with octal values from the above $args_array array
55 *** Testing vprintf() : hexa formats with hexa values ***
H A Dvprintf_variation13_64bit.phpt2 Test vprintf() function : usage variations - hexa formats with hexa values
10 * Test vprintf() when different hexa formats and hexa values are passed to
14 echo "*** Testing vprintf() : hexa formats with hexa values ***\n";
28 // Arrays of hexa values for the format defined in $format.
29 // Each sub array contains hexa values which correspond to each format string in $format
43 // and with octal values from the above $args_array array
55 *** Testing vprintf() : hexa formats with hexa values ***
/php-src/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-src/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_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 --
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_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_sum_variation7.phpt14 echo "-- array with string values --\n";
19 echo "-- array with bool values --\n";
24 echo "-- array with null values --\n";
51 echo "-- array with object values --\n";
54 // Mixed values
56 echo "-- array with mixed values --\n";
62 -- array with string values --
74 -- array with bool values --
76 -- array with null values --
86 -- array with object values --
[all …]
/php-src/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 30 milliseconds

12345678910>>...44