Home
last modified time | relevance | path

Searched refs:values (Results 76 – 100 of 1096) sorted by relevance

12345678910>>...44

/php-src/ext/standard/tests/general_functions/
H A Dvar_export_basic3.phpt2 Test var_export() function with valid float values
7 echo "*** Testing var_export() with valid float values ***\n";
8 // different valid float values
31 /* Loop to check for above float values with var_export() */
32 echo "\n*** Output for float values ***\n";
45 *** Testing var_export() with valid float values ***
47 *** Output for float values ***
H A Dfloatval_basic.phpt7 // different valid float values
33 float values, expected output:float value for valid floating point number */
34 echo "*** Testing floatval() with valid float values ***\n";
41 float values, expected output:float value for valid floating point number */
42 echo "\n*** Testing doubleval() with valid float values ***\n";
50 *** Testing floatval() with valid float values ***
109 *** Testing doubleval() with valid float values ***
/php-src/ext/standard/tests/strings/
H A Dchunk_split_variation5.phpt2 Test chunk_split() function : usage variations - different integer values for 'chunklen' argument(B…
10 * passsing different integer values for 'chunklen' argument to chunk_split()
14 echo "*** Testing chunk_split() : different integer values for 'chunklen' ***\n";
20 // different values for chunklen
21 $values = array (
33 for($count = 0; $count < count($values); $count++) {
36 var_dump( chunk_split($str, $values[$count], $ending) );
46 *** Testing chunk_split() : different integer values for 'chunklen' ***
H A Dvprintf_variation9.phpt2 Test vprintf() function : usage variations - char formats with char values
10 echo "*** Testing vprintf() : char formats with char values ***\n";
25 // Arrays of char values for the format defined in $format.
26 // Each sub array contains char values which correspond to each format string in $format
40 // and with char values from the above $args_array array
52 *** Testing vprintf() : char formats with char values ***
H A Dchunk_split_variation13.phpt12 $values = array (
17 //loop through each element of values for 'str' and default value of 'chunklen'
18 for($count = 0; $count < count($values); $count++) {
20 var_dump( chunk_split($values[$count]) );
H A Dvprintf_variation18.phpt2 Test vprintf() function : usage variations - scientific formats with non-scientific values
6 * Test vprintf() when different scientific formats and non-scientific values are passed to
10 echo "*** Testing vprintf() : scientific formats and non-scientific values ***\n";
20 // Arrays of non scientific values for the format defined in $format.
21 // Each sub array contains non scientific values which correspond to each format in $format
24 // array of float values
55 // and with non-scientific values from the above $args_array array
67 *** Testing vprintf() : scientific formats and non-scientific values ***
H A Dstrval_variation1.phpt21 //array of values to iterate over
22 $values = array(
23 //Decimal values
29 //Octal values
35 //Hexadecimal values
81 foreach($values as $value) {
H A Dstristr_variation2.phpt2 Test stristr() function : usage variations - test values for $needle argument
18 // array with different values for $input
21 // integer values
27 // float values
32 // array values
37 // boolean values
H A Dprint_variation1.phpt22 // array with different values for $input
25 // integer values
32 // float values
37 // array values
42 // boolean values
48 // null values
/php-src/Zend/tests/return_types/
H A D015.phpt9 function values(): Collection;
13 function values(): Collection {
19 var_dump($v->values());
/php-src/ext/standard/tests/array/
H A Darray_unique_variation4.phpt2 Test array_unique() function : usage variations - associative array with different values
7 * associative arrays having different values to $input argument.
10 echo "*** Testing array_unique() : assoc. array with diff. values to \$input argument ***\n";
32 // associative arrays with different values
34 // arrays with integer values
38 // arrays with string values
60 *** Testing array_unique() : assoc. array with diff. values to $input argument ***
H A Darray_combine_error2.phpt7 // Testing array_combine by passing empty arrays to $keys and $values arguments
19 // Testing array_combine by passing empty array to $values
20 echo "\n-- Testing array_combine() function with empty array for \$values argument --\n";
44 array_combine(): Argument #1 ($keys) and argument #2 ($values) must have the same number of elements
45 -- Testing array_combine() function with empty array for $values argument --
46 array_combine(): Argument #1 ($keys) and argument #2 ($values) must have the same number of elements
48 array_combine(): Argument #1 ($keys) and argument #2 ($values) must have the same number of elements
H A Darray_map_variation5.phpt2 Test array_map() function : usage variations - associative array with different values
6 * Test array_map() by passing associative array with different values for $arr1 argument
9 echo "*** Testing array_map() : associative array with diff. values for 'arr1' argument ***\n";
41 // arrays with integer values
46 // arrays with float values
50 // arrays with string values
58 // array with mixed values
75 *** Testing array_map() : associative array with diff. values for 'arr1' argument ***
H A Darray_combine_basic.phpt7 /* Different arrays for $keys and $values arguments */
9 // array with default keys for $keys and $values arguments
14 // associative arrays for $keys and $values arguments
19 // mixed array for $keys and $values arguments
H A Darray_fill_variation5.phpt2 Test array_fill() function : usage variations - different types of array values for 'val' argument
6 * testing array_fill() by passing different types of array values for 'val' argument
16 //array of different types of array values for 'val' argument
17 $values = array(
34 // loop through each element of the values array for 'val' argument
36 echo "--- Testing array_fill() with different types of array values for 'val' argument ---\n";
38 for($i = 0; $i < count($values); $i++)
41 $val = $values[$i];
52 --- Testing array_fill() with different types of array values for 'val' argument ---
H A Darray_flip_variation3.phpt2 Test array_flip() function : usage variations - 'input' argument with different valid values
6 * In 'input' array argument, values are expected to be valid keys i.e. string/integer
7 * here testing for all different valid string and integer values
10 echo "*** Testing array_flip() : different valid values in 'input' array argument ***\n";
25 // numeric values
66 *** Testing array_flip() : different valid values in 'input' array argument ***
H A Dusort_variation5.phpt48 echo "\n-- Sorting Single Quoted String values --\n";
59 echo "\n-- Sorting Double Quoted String values --\n";
67 echo "\n-- Sorting Heredoc String values --\n";
74 -- Sorting Single Quoted String values --
99 -- Sorting Double Quoted String values --
124 -- Sorting Heredoc String values --
/php-src/ext/xml/tests/
H A Dbug70962.phpt12 xml_parse_into_struct($parser, $xml, $values);
14 return $values;
24 // Check XML_OPTION_SKIP_WHITE ignores values of tags containing whitespace characters only.
27 // Check XML_OPTION_SKIP_WHITE ignores empty <![CDATA[ ]]> values.
/php-src/Zend/tests/in-de-crement/
H A Dincrement_001.phpt2 Incrementing max int values 32bit
10 $values = [
15 foreach ($values as $var) {
H A Ddecrement_001.phpt2 Decrementing min int values 32bit
10 $values = [
15 foreach ($values as $var) {
H A Dincrement_001_64bit.phpt2 Incrementing max int values 64bit
10 $values = [
15 foreach ($values as $var) {
H A Ddecrement_001_64bit.phpt2 Decrementing min int values 64bit
10 $values = [
15 foreach ($values as $var) {
/php-src/Zend/tests/
H A Dint_special_values.phpt2 Conversion of special float values to int
5 $values = [
14 foreach($values as $value) {
H A Ddval_to_lval_32.phpt11 $values = [
19 $values[] = -2147483649.8;
21 foreach ($values as $v) {
/php-src/ext/reflection/tests/
H A DReflectionClass_getStaticPropertyValue_001.phpt20 echo "Retrieving static values from A:\n";
28 echo "\nRetrieving static values from B:\n";
34 echo "\nRetrieving non-existent values from A with no default value:\n";
51 Retrieving static values from A:
58 Retrieving static values from B:
63 Retrieving non-existent values from A with no default value:

Completed in 45 milliseconds

12345678910>>...44