Home
last modified time | relevance | path

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

12345678910>>...72

/PHP-5.5/ext/standard/tests/array/
H A Darray_rand_variation3.phpt19 // array with int values
22 // array with float values
31 // array with bool values
34 // array with hexa values
37 // array with null values
49 echo "\n*** Testing array_rand() with arrays having different types of values ***\n";
71 *** Testing array_rand() with arrays having different types of values ***
H A Darray_diff_variation3.phpt2 Test array_diff() function : usage variations - array with different data types as values
6 * Description: Returns the entries of $arr1 that have values which are not
13 * data types as values in place of $arr1
30 //array of values to iterate over
31 $values = array(
98 foreach($values as $value) {
H A Dsizeof_variation2.phpt2 Test sizeof() function : usage variations - different array values for 'var' argument
17 echo "--- Testing sizeof() with different array values for 'var' argument ---\n";
19 // array containing different types of array values for 'var' argument
20 $values = array (
37 // loop through each element of the values array for 'var' argument
40 for($i = 0; $i < count($values); $i++)
43 $var = $values[$i];
64 --- Testing sizeof() with different array values for 'var' argument ---
H A Darray_intersect_assoc_variation7.phpt2 Test array_intersect_assoc() function : usage variations - assoc array with diff values for 'arr1' …
6 …* Description: Returns the entries of arr1 that have values which are present in all the other arg…
13 * associative arrays having different possible values to $arr1 argument.
17 echo "*** Testing array_intersect_assoc() : assoc array with diff values to \$arr1 argument ***\n";
45 // arrays with integer values
50 // arrays with float values
54 // arrays with string values
62 // array with mixed values
94 *** Testing array_intersect_assoc() : assoc array with diff values to $arr1 argument ***
H A Darray_intersect_assoc_variation8.phpt2 Test array_intersect_assoc() function : usage variations - assoc array with diff values for 'arr2' …
6 …* Description: Returns the entries of arr1 that have values which are present in all the other arg…
13 * associative arrays having different possible values to $arr2 argument.
17 echo "*** Testing array_intersect_assoc() : assoc array with diff values to \$arr2 argument ***\n";
45 // arrays with integer values
50 // arrays with float values
54 // arrays with string values
62 // array with mixed values
94 *** Testing array_intersect_assoc() : assoc array with diff values to $arr2 argument ***
H A Darray_intersect_variation7.phpt2 Test array_intersect() function : usage variations - assoc array with diff values for 'arr1' argume…
6 …* Description: Returns the entries of arr1 that have values which are present in all the other arg…
12 * associative arrays having different possible values to $arr1 argument.
16 echo "*** Testing array_intersect() : assoc array with diff values to \$arr1 argument ***\n";
44 // arrays with integer values
49 // arrays with float values
53 // arrays with string values
61 // array with mixed values
91 *** Testing array_intersect() : assoc array with diff values to $arr1 argument ***
H A Darray_intersect_variation8.phpt2 Test array_intersect() function : usage variations - assoc array with diff values for 'arr2' argume…
6 …* Description: Returns the entries of arr1 that have values which are present in all the other arg…
12 * associative arrays having different possible values to $arr2 argument.
16 echo "*** Testing array_intersect() : assoc array with diff values to \$arr2 argument ***\n";
44 // arrays with integer values
49 // arrays with float values
53 // arrays with string values
61 // array with mixed values
91 *** Testing array_intersect() : assoc array with diff values to $arr2 argument ***
H A Darray_combine_variation1.phpt2 Test array_combine() function : usage variations - unexpected values for 'keys' argument
5 /* Prototype : array array_combine(array $keys, array $values)
7 * and the elements of the second as the corresponding values
12 * Testing array_combine() function by passing values to $keys argument other than arrays
14 * The $values argument passed is a fixed array.
17 echo "*** Testing array_combine() : Passing non-array values to \$keys argument ***\n";
19 // Initialise $values argument
20 $values = array(1, 2);
42 // unexpected values to be passed to $keys argument
94 var_dump( array_combine($keys,$values) );
[all …]
/PHP-5.5/ext/standard/tests/strings/
H A Dchunk_split_variation7.phpt2 Test chunk_split() function : usage variations - different double quoted values for 'str' argument
16 echo "*** Testing chunk_split() : with different double quoted values for 'str' argument ***\n";
22 // different values for 'str'
23 $values = array(
39 for($count = 0; $count < count($values); $count++) {
41 var_dump( chunk_split( $values[$count], $chunklen, $ending) );
47 *** Testing chunk_split() : with different double quoted values for 'str' argument ***
H A Dtrim_variation2.phpt2 Test trim() function : usage variations - test values for $charlist argument
27 // array with different values for $input
30 // integer values
38 // float values
43 // array values
48 // boolean values
54 // null values
H A Dvprintf_variation2.phpt2 Test vprintf() function : usage variations - unexpected values for args argument
11 * Test vprintf() when different unexpected values are passed to
15 echo "*** Testing vprintf() : with unexpected values for args argument ***\n";
36 //array of values to iterate over
37 $values = array(
85 foreach($values as $value) {
99 *** Testing vprintf() : with unexpected values for args argument ***
H A Dstr_split_variation1.phpt2 Test str_split() function : usage variations - unexpected values for 'str' argument
13 echo "*** Testing str_split() : unexpected values for 'str' ***\n";
34 //different values for 'str' argument
35 $values = array(
84 // loop through each element of $values for 'str' argument
85 for($count = 0; $count < count($values); $count++) {
87 var_dump( str_split($values[$count], $split_length) );
96 *** Testing str_split() : unexpected values for 'str' ***
H A Djoin_basic.phpt17 // pieces as arry with numeric values
20 // pieces as array with strings values
25 // pices as associative array (numeric values)
30 // pices as associative array (string/numeric values)
/PHP-5.5/ext/standard/tests/math/
H A Dbindec_basic.phpt11 $values = array(111000111,
31 for ($i = 0; $i < count($values); $i++) {
32 $res = bindec($values[$i]);
H A Dbindec_basic_64bit.phpt11 $values = array(111000111,
31 for ($i = 0; $i < count($values); $i++) {
32 $res = bindec($values[$i]);
H A Dhexdec_basic.phpt9 $values = array(0x123abc,
27 for ($i = 0; $i < count($values); $i++) {
28 $res = hexdec($values[$i]);
/PHP-5.5/ext/standard/tests/general_functions/
H A Dget_cfg_var_variation5.phpt2 Test function get_cfg_var() by substituting argument 1 with int values.
14 echo "*** Test substituting argument 1 with int values ***\n";
31 *** Test substituting argument 1 with int values ***
H A Dgetservbyname_variation14.phpt2 Test function getservbyname() by substituting argument 2 with string values.
7 echo "*** Test substituting argument 2 with string values ***\n";
29 *** Test substituting argument 2 with string values ***
H A Dgetservbyname_variation7.phpt2 Test function getservbyname() by substituting argument 1 with string values.
7 echo "*** Test substituting argument 1 with string values ***\n";
29 *** Test substituting argument 1 with string values ***
H A Dgetservbyname_variation3.phpt2 Test function getservbyname() by substituting argument 1 with emptyUnsetUndefNull values.
7 echo "*** Test substituting argument 1 with emptyUnsetUndefNull values ***\n";
30 *** Test substituting argument 1 with emptyUnsetUndefNull values ***
/PHP-5.5/ext/session/tests/
H A D006.phpt32 echo "original values:\n";
43 echo "values after session:\n";
47 original values:
59 values after session:
H A D026.phpt32 echo "original values:\n";
45 echo "values after session:\n";
49 original values:
61 values after session:
/PHP-5.5/ext/reflection/tests/
H A DReflectionClass_getStaticPropertyValue_001.phpt22 echo "Retrieving static values from A:\n";
30 echo "\nRetrieving static values from B:\n";
37 echo "\nRetrieving non-existent values from A with no default value:\n";
54 Retrieving static values from A:
61 Retrieving static values from B:
67 Retrieving non-existent values from A with no default value:
/PHP-5.5/ext/curl/tests/
H A Dcurl_version_variation1.phpt2 Test curl_version() function : usage variations - test values for $ascii argument
29 // array with different values for $input
32 // integer values
40 // float values
45 // array values
50 //string values
55 // boolean values
61 // null values
/PHP-5.5/ext/posix/tests/
H A Dposix_ttyname_variation5.phpt2 Test function posix_ttyname() by substituting argument 1 with int values.
17 echo "*** Test substituting argument 1 with int values ***\n";
32 *** Test substituting argument 1 with int values ***

Completed in 35 milliseconds

12345678910>>...72