Home
last modified time | relevance | path

Searched refs:values (Results 201 – 225 of 1096) sorted by relevance

12345678910>>...44

/php-src/ext/pdo_sqlite/tests/subclasses/
H A Dpdo_sqlite_createaggregate_trampoline.phpt19 return implode(',', $context['values']);
22 $context = ['total' => 0, 'values' => []];
25 $context['values'][] = $context['total'];
/php-src/ext/standard/tests/array/
H A Dkrsort_variation6.phpt2 Test krsort() function : usage variations - sort hexadecimal values
6 * testing krsort() by providing array of hexa-decimal values for $array argument
7 * with following flag values:
15 // an array containing unsorted hexadecimal values with keys
H A Darray_unshift_variation5.phpt2 Test array_unshift() function : usage variations - assoc. array with diff values for 'array' argume…
9 * associative arrays having different possible values to $array argument.
13 echo "*** Testing array_unshift() : associative array with different values ***\n";
44 // arrays with integer values
49 // arrays with float values
53 // arrays with string values
61 // array with mixed values
93 *** Testing array_unshift() : associative array with different values ***
H A Darray_intersect_assoc_variation4.phpt35 // heredoc with quoted strings and numeric values
54 /*1*/ array(1, 2), // array with default keys and numeric values
55 array(1.1, 1.2, 1.3), // array with default keys & float values
56 array(false,true), // array with default keys and boolean values
64 /*9*/ array(1 => "one", 2 => "two", 6 => "six"), // explicit numeric keys, string values
65 array("one" => 1, "two" => 2, "three" => 3 ), // string keys & numeric values
66 array( 1 => 10, 2 => 20, 4 => 40, 3 => 30), // explicit numeric keys and numeric values
70 // associative array, containing null/empty/boolean values as key/value
H A Darray_diff_variation8.phpt6 * Test array_diff() with associative arrays containing different data types as values
33 // associative arrays with different values
35 // arrays with integer values
39 // arrays with float values
43 // arrays with string values
H A Dksort_variation6.phpt2 Test ksort() function : usage variations - sort hexadecimal values
6 …esting ksort() by providing array of hexa-decimal values for $array argument with following flag v…
14 // an array containng unsorted hexadecimal values with keys
H A Darray_filter_variation8.phpt2 Test array_filter() function : usage variations - Callback function with different return values
7 * here testing callback functions for return values other than bool
10 …* Testing array_filter() : usage variations - callback function with different return values***\n";
56 *** Testing array_filter() : usage variations - callback function with different return values***
H A Darray_unique_variation7.phpt6 * Testing the functionality of array_unique() by passing an array having binary values.
11 // array with binary values
H A Dnatcasesort_variation5.phpt2 Test natcasesort() function : usage variations - different hex values
6 * Pass an array of different hex values to test how natcasesort() re-orders it
/php-src/ext/standard/tests/math/
H A Dexp_basic.phpt7 $values = array(10,
21 foreach($values as $value) {
H A Doctdec_basic.phpt9 $values = array(01234567,
27 for ($i = 0; $i < count($values); $i++) {
28 $res = octdec($values[$i]);
H A Doctdec_basic_64bit.phpt12 $values = array(01234567,
30 for ($i = 0; $i < count($values); $i++) {
31 $res = octdec($values[$i]);
/php-src/ext/standard/tests/file/
H A Dstat_basic-win32-mb.phpt38 // stat contains 13 different values stored twice, can be accessed using
40 echo "*** Testing stat(): validating the values stored in stat ***\n";
41 // Initial stat values
45 // New stat values taken after creation of file
48 // compare the two stat values, initial stat and stat recorded after
68 *** Testing stat(): validating the values stored in stat ***
H A Dstat_basic-win32.phpt38 // stat contains 13 different values stored twice, can be accessed using
40 echo "*** Testing stat(): validating the values stored in stat ***\n";
41 // Initial stat values
45 // New stat values taken after creation of file
48 // compare the two stat values, initial stat and stat recorded after
68 *** Testing stat(): validating the values stored in stat ***
/php-src/ext/standard/tests/strings/
H A Dprintf_variation2.phpt2 Test printf() function : usage variations - with all types of values for arg1 argument
5 echo "*** Testing printf() : with different types of values passed for arg1 argument ***\n";
26 //array of values to iterate over
27 $values = array(
83 foreach($values as $value) {
104 *** Testing printf() : with different types of values passed for arg1 argument ***
H A Dsprintf_variation2.phpt2 Test sprintf() function : usage variations - with all types of values for arg1 argument
5 echo "*** Testing sprintf() : with different types of values passed for arg1 argument ***\n";
26 //array of values to iterate over
27 $values = array(
83 foreach($values as $value) {
101 *** Testing sprintf() : with different types of values passed for arg1 argument ***
H A Dbug61038.phpt20 Warning: unpack(): Type a: not enough input values, need 6 values but only 5 were provided in %s on…
H A Dstrtr_variation8.phpt27 // integer values
32 // float values
37 // array values
42 // boolean values
48 // null values
H A Dstrip_tags_variation4.phpt2 Test strip_tags() function : usage variations - invalid values for 'str' and valid 'allowable_tags'
6 …* testing functionality of strip_tags() by giving invalid values for $str and valid values for $al…
11 // unexpected values for $string
/php-src/ext/date/tests/
H A Dgetdate_variation3.phpt2 Test getdate() function : usage variation - Passing hexadcimal timestamp values
10 //array of values to iterate over
13 //octal values
H A Dtimezone_offset_get_error.phpt12 echo "\n-- Testing timezone_offset_get() function with an invalid values for \$object argument --\n…
35 echo "\n-- Testing timezone_offset_get() function with an invalid values for \$datetime argument --…
61 -- Testing timezone_offset_get() function with an invalid values for $object argument --
69 -- Testing timezone_offset_get() function with an invalid values for $datetime argument --
/php-src/ext/posix/tests/
H A Dposix_ttyname_value_errors.phpt12 $values = [
17 foreach ($values as $value) {
/php-src/ext/sqlite3/tests/
H A Dsqlite3_25_create_aggregate.phpt13 $context = array('total' => 0, 'values' => array());
16 $context['values'][] = $context['total'];
21 return implode(',', $context['values']);
/php-src/ext/mysqlnd/
H A Dmysqlnd_plugin.c71 mysqlnd_stats_end(plugin->plugin_header.plugin_stats.values, 1); in mysqlnd_example_plugin_end()
72 plugin->plugin_header.plugin_stats.values = NULL; in mysqlnd_example_plugin_end()
83 mysqlnd_example_plugin.plugin_header.plugin_stats.values = mysqlnd_plugin_example_stats; in mysqlnd_example_plugin_register()
/php-src/ext/pdo_mysql/tests/
H A Dbug53551.phpt27 $values = [
32 $stmt->execute($values);
36 $stmt->execute($values);

Completed in 27 milliseconds

12345678910>>...44