Home
last modified time | relevance | path

Searched refs:values (Results 501 – 525 of 1865) sorted by relevance

1...<<21222324252627282930>>...75

/PHP-5.3/ext/standard/tests/array/
H A Dasort_variation10.phpt2 Test asort() function : usage variations - sort octal values
12 * testing asort() by providing different octal array for $array argument with following flag values
20 // an array contains unsorted octal values
H A Dsort_variation10.phpt2 Test sort() function : usage variations - sort octal values
13 * with following flag values
21 // an array containing unsorted octal values
H A Dkrsort_basic.phpt11 * Testing krsort() by providing array of integer/string values to check the basic functionality
12 * with following flag values :
21 // an array containing unsorted string values with indices
23 // an array containing unsorted numeric values with indices
H A Dksort_basic.phpt11 …rt() by providing array of integer/string values to check the basic functionality with following …
20 // an array containing unsorted string values with indices
22 // an array containing unsorted numeric values with indices
H A Drsort_variation3.phpt2 Test rsort() function : usage variations - numeric values
32 // array values contains minimum and maximum ranges
36 // set of possible flag values
50 // loop through $flag_value array and setting all possible flag values
H A Darray_pad_variation6.phpt13 * The $pad_size and $pad_value arguments passed are fixed values.
41 // heredoc with quoted strings and numeric values
51 /*1*/ array(1, 2), // with default keys and numeric values
52 array(1.1, 2.2), // with default keys & float values
53 array(false,true), // with default keys and boolean values
61 /*9*/ array(1 => "one", 2 => "two", 3 => "three"), // explicit numeric keys, string values
62 array("one" => 1, "two" => 2, "three" => 3 ), // string keys & numeric values
63 array( 1 => 10, 2 => 20, 4 => 40, 3 => 30), // explicit numeric keys and numeric values
67 // associative array, containing null/empty/boolean values as key/value
H A Darray_flip_basic.phpt12 // array with default keys - numeric values
16 // array with default keys - string values
H A Dkrsort_variation11.phpt2 Test krsort() function : usage variations - sort bool values
11 …* testing krsort() by providing array of boolean values for $array argument with following flag va…
H A Dsort_variation6.phpt2 Test sort() function : usage variations - sort hexadecimal values
12 …ing sort() by providing different hexa-decimal array for $array argument with following flag values
20 // an array contains unsorted hexadecimal values
/PHP-5.3/ext/oci8/tests/
H A Dfetch_object_2.phpt18 "insert into fetch_object_2_tab values (123, '1st row col2 string', '1 more text')",
19 "insert into fetch_object_2_tab values (456, '2nd row col2 string', NULL)",
20 "insert into fetch_object_2_tab values (789, '3rd row col2 string', '3 more text')",
H A Dlob_null.phpt24 insert into lob_null_tab (id, data) values (pid, pdata);
38 $s = oci_parse($c, "insert into lob_null_tab values (1, :b)");
52 $s = oci_parse($c, "insert into lob_null_tab values (2, :b)");
66 $s = oci_parse($c, "insert into lob_null_tab values (3, :b)");
126 $s = oci_parse($c, "insert into lob_null_tab values (7, empty_clob()) returning data into :b");
133 $s = oci_parse($c, "insert into lob_null_tab values (8, empty_clob()) returning data into :b");
140 $s = oci_parse($c, "insert into lob_null_tab values (9, empty_clob()) returning data into :b");
/PHP-5.3/ext/imap/tests/
H A Dimap_fetch_overview_variation3.phpt15 * Test passing a range of values into the $options argument to imap_fetch_overview():
16 * 1. values that equate to 1
17 * 2. Minimum and maximum PHP values
/PHP-5.3/ext/ctype/tests/
H A Dctype_cntrl_variation3.phpt21 $values = array(
55 // loop through each element of $values to test behaviour of ctype_cntrl()
57 foreach($values as $value) {
/PHP-5.3/ext/standard/tests/strings/
H A Dsprintf_variation24.phpt2 Test sprintf() function : usage variations - char formats with array values
10 echo "*** Testing sprintf() : char formats with array values ***\n";
12 // array of array values
49 *** Testing sprintf() : char formats with array values ***
H A Dsprintf_variation37.phpt2 Test sprintf() function : usage variations - hexa formats with array values
10 echo "*** Testing sprintf() : hexa formats with array values ***\n";
12 // array of array values
49 *** Testing sprintf() : hexa formats with array values ***
H A Dnl_langinfo_variation1.phpt35 // array with different values for $input
38 // integer values
44 // float values
50 // array values
55 // boolean values
H A Dvprintf_variation7.phpt11 * Test vprintf() when different string formats and string values are passed to
45 // Arrays of string values for the format defined in $format.
46 // Each sub array contains string values which correspond to each format string in $format
H A Dvsprintf_variation7.phpt11 * Test vsprintf() when different string formats and string values are passed to
45 // Arrays of string values for the format defined in $format.
46 // Each sub array contains string values which correspond to each format string in $format
H A Dparse_str_basic3.phpt15 echo "\nTest string with array values\n";
20 echo "\nTest string with array values and results array\n";
35 echo "\nTest string with array values with same name as existing variable\n";
98 Test string with array values
118 Test string with array values and results array
168 Test string with array values with same name as existing variable
H A Dwordwrap_variation2.phpt2 Test wordwrap() function : usage variations - unexpected values for width argument
11 * test wordwrap by passing different values for width argument
27 // array with different values as width
28 $values = array (
36 // array values
43 // boolean values
49 // string values
76 // when $width arugment is supplied with different values
79 for($index = 0; $index < count($values); $index ++) {
81 $width = $values [$index];
[all …]
/PHP-5.3/ext/date/tests/
H A Dtimezone_offset_get_error.phpt28 echo "\n-- Testing timezone_offset_get() function with an invalid values for \$object argument --\n…
36 echo "\n-- Testing timezone_offset_get() function with an invalid values for \$datetime argument --…
63 -- Testing timezone_offset_get() function with an invalid values for $object argument --
74 -- Testing timezone_offset_get() function with an invalid values for $datetime argument --
/PHP-5.3/ext/standard/tests/general_functions/
H A Dis_bool.phpt9 echo "*** Testing is_bool() with valid boolean values ***\n";
18 bool values, expected output: bool(true) */
25 echo "\n*** Testing is_bool() on non boolean values ***\n";
145 *** Testing is_bool() with valid boolean values ***
155 *** Testing is_bool() on non boolean values ***
H A Dis_null.phpt9 echo "*** Testing is_null() with valid null values ***\n";
36 null values, expected output: bool(true) */
43 echo "\n*** Testing is_bool() on non null values ***\n";
145 *** Testing is_null() with valid null values ***
169 *** Testing is_bool() on non null values ***
/PHP-5.3/ext/spl/tests/
H A Dbug33136.phpt32 echo "Assign values\n";
53 Assign values
/PHP-5.3/tests/lang/operators/
H A Doperator_equals_variation.phpt29 // test valid values
43 // test invalid values

Completed in 81 milliseconds

1...<<21222324252627282930>>...75