Home
last modified time | relevance | path

Searched refs:values (Results 451 – 475 of 1865) sorted by relevance

1...<<11121314151617181920>>...75

/PHP-5.3/ext/standard/tests/strings/
H A Dsprintf_variation36.phpt2 Test sprintf() function : usage variations - hexa formats with resource values
10 echo "*** Testing sprintf() : hexa formats with resource values ***\n";
47 *** Testing sprintf() : hexa formats with resource values ***
H A Dsprintf_variation27.phpt2 Test sprintf() function : usage variations - char formats with char values
11 echo "*** Testing sprintf() : char formats with char values ***\n";
13 // array of char values
37 *** Testing sprintf() : char formats with char values ***
H A Dchunk_split_variation6.phpt23 $values = array(
40 //Loop through each element of values for 'str'
41 for($count = 0;$count < count($values);$count++) {
43 var_dump( chunk_split($values[$count], $chunklen, $ending) );
H A Dstr_pad_variation3.phpt30 // array with different values for $input
33 // integer values
40 // float values
45 // array values
50 // boolean values
H A Dstrrchr_variation10.phpt70 // array with different values
73 // integer values
79 // float values
86 // array values
93 // boolean values
H A Dstr_split_variation2.phpt2 Test str_split() function : usage variations - unexpected values for 'split_length' argument
17 echo "*** Testing str_split() : unexpected values for 'split_length' ***\n";
38 //different values for 'split_length'
39 $values = array(
86 // loop through each element of $values for 'split_length'
87 for($count = 0; $count < count($values); $count++) {
89 var_dump( str_split($str, $values[$count]) );
98 *** Testing str_split() : unexpected values for 'split_length' ***
H A Dhebrev_variation2.phpt2 Test hebrev() function : usage variations - test values for $max_chars_per_line argument
27 // array with different values for $max_chars_per_line
30 // integer values
38 // float values
43 // array values
48 // boolean values
54 // null values
58 // string values
/PHP-5.3/ext/gd/tests/
H A Dimagecolorallocate_variation5.phpt2 Test imagecolorallocate() function : usage variations - passing octal and hexa-decimal values
25 $values = array(
40 foreach($values as $key => $value) {
/PHP-5.3/ext/standard/tests/array/
H A Dkrsort_variation8.phpt2 Test krsort() function : usage variations - sort mixed values, 'sort_flags' as default/SORT_REGULAR…
11 * testing krsort() by providing array of mixed values for $array argument
12 * with following flag values:
19 // mixed value array with different key values
H A Darsort_variation3.phpt2 Test arsort() function : usage variations - sort integer/float values
12 …rsort() by providing different integer/float value arrays for $array argument with following values
31 // array values contains minimum and maximum ranges
35 // set of possible flag values
50 // loop through $flag_value array and setting all possible flag values
H A Dasort_variation3.phpt2 Test asort() function : usage variations - sort integer/float values
12 …asort() by providing different integer/float value arrays for $array argument with following values
31 // array values contains minimum and maximum ranges
35 // set of possible flag values
50 // loop through $flag_value array and setting all possible flag values
H A Dasort_variation9.phpt12 …* Testing asort() by providing arrays with key values for $array argument with following flag val…
19 // list of arrays with/without key values
31 echo "\n-- Testing asort() by supplying various arrays with key values --\n";
55 -- Testing asort() by supplying various arrays with key values --
H A Darsort_variation9.phpt12 …* Testing arsort() by providing arrays with key values for $array argument with following flag va…
19 // list of arrays with/without key values
31 echo "\n-- Testing arsort() by supplying various arrays with key values --\n";
55 -- Testing arsort() by supplying various arrays with key values --
H A Dksort_variation9.phpt11 …ing ksort() by providing arrays with/without key values for $array argument with following flag v…
18 // list of arrays with/without key values
30 echo "\n-- Testing ksort() by supplying various arrays with/without key values --\n";
53 -- Testing ksort() by supplying various arrays with/without key values --
H A Dsort_variation3.phpt2 Test sort() function : usage variations - sort integer/float values
13 * with following flag values
33 // array values contains minimum and maximum ranges
37 // set of possible flag values
52 // loop through $flag_value array and setting all possible flag values
H A Dsort_variation9.phpt12 * Testing sort() by providing arrays with key values for $array argument
13 * with following flag values.
21 // list of arrays with key and values
34 echo "\n-- Testing sort() by supplying various arrays with key values --\n";
58 -- Testing sort() by supplying various arrays with key values --
H A Darray_unshift_variation3.phpt2 Test array_unshift() function : usage variations - different array values for 'array' argument
22 /*1*/ array(1, 2), // array with default keys and numeric values
23 array(1.1, 2.2), // array with default keys & float values
25 array(false,true), // array with default keys and boolean values
31 /*8*/ array(1 => "one", 2 => "two", 3 => "three"), // explicit numeric keys, string values
32 array("one" => 1, "two" => 2, "three" => 3 ), // string keys & numeric values
33 array( 1 => 10, 2 => 20, 4 => 40, 3 => 30), // explicit numeric keys and numeric values
37 // associative array, containing null/empty/boolean values as key/value
H A Darray_reverse_variation3.phpt2 Test array_reverse() function : usage variations - different array values for 'array' argument
12 * different array values for $array argument
38 /*1*/ array(1, 2), // array with default keys and numeric values
39 array(1.1, 2.2), // array with default keys & float values
41 array(false,true), // array with default keys and boolean values
47 /*8*/ array(1 => "one", 2 => "two", 3 => "three"), // explicit numeric keys, string values
48 array("one" => 1, "two" => 2, "three" => 3 ), // string keys & numeric values
49 array( 1 => 10, 2 => 20, 4 => 40, 3 => 30), // explicit numeric keys and numeric values
53 // associative array, containing null/empty/boolean values as key/value
H A Darray_filter_variation2.phpt2 Test array_filter() function : usage variations - Unexpected values for 'callback' function argument
10 /* Passing different scalar and nonscalar values in place of 'callback' argument
12 echo "*** Testing array_filter() : usage variations - unexpected values for 'callback' function***\…
33 // different scalar and nonscalar values in place of callback function
34 $values = array(
87 // loop through each element of the 'values' for callback
88 for($count = 0; $count < count($values); $count++) {
90 var_dump( array_filter($input, $values[$count]) );
99 *** Testing array_filter() : usage variations - unexpected values for 'callback' function***
/PHP-5.3/ext/standard/tests/math/
H A Dhexdec_basic_64bit.phpt11 $values = array(0x123abc,
30 foreach($values as $value) {
H A Dfloor_basic.phpt13 $values = array(0,
36 foreach($values as $value) {
/PHP-5.3/ext/sybase_ct/tests/
H A Dtest_query_nostore.phpt28 ) values (
34 ) values (
40 ) values (
/PHP-5.3/ext/ctype/tests/
H A Dctype_alpha_variation3.phpt21 $values = array(
48 // loop through each element of $values to test behaviour of ctype_alnum()
50 foreach($values as $value) {
/PHP-5.3/ext/mysqli/tests/
H A Dmysqli_stmt_bind_limits.phpt19 $values = "";
25 $values .= "?, ";
34 $values = substr($values, 0, -2);
36 $insert .= substr(str_repeat("(" . $values . "), ", $rows), 0, -2);
/PHP-5.3/ext/filter/tests/
H A D016.phpt7 $values = Array(
24 foreach ($values as $value) {

Completed in 36 milliseconds

1...<<11121314151617181920>>...75