Home
last modified time | relevance | path

Searched refs:values (Results 226 – 250 of 1737) sorted by relevance

12345678910>>...70

/PHP-5.3/ext/standard/tests/general_functions/
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 ***
H A Dgetservbyname_variation13.phpt2 Test function getservbyname() by substituting argument 2 with object values.
7 echo "*** Test substituting argument 2 with object values ***\n";
34 *** Test substituting argument 2 with object values ***
H A Dgetservbyname_variation6.phpt2 Test function getservbyname() by substituting argument 1 with object values.
7 echo "*** Test substituting argument 1 with object values ***\n";
34 *** Test substituting argument 1 with object values ***
H A Dget_cfg_var_variation7.phpt2 Test function get_cfg_var() by substituting argument 1 with string values.
14 echo "*** Test substituting argument 1 with unknown string values ***\n";
35 *** Test substituting argument 1 with unknown string values ***
/PHP-5.3/ext/standard/tests/math/
H A Doctdec_basic_64bit.phpt12 $values = array(01234567,
30 for ($i = 0; $i < count($values); $i++) {
31 $res = octdec($values[$i]);
H A Dabs_basic.phpt14 $values = array(23,
29 for ($i = 0; $i < count($values); $i++) {
30 $res = abs($values[$i]);
/PHP-5.3/ext/standard/tests/strings/
H A Dstristr_variation1.phpt2 Test stristr() function : usage variations - test values for $haystack argument
26 // array with different values for $input
29 // integer values
35 // float values
40 // array values
45 // boolean values
H A Dstrlen_variation1.phpt27 // array with different values for $input
30 // integer values
37 // float values
42 // array values
47 // boolean values
53 // null values
H A Dord_variation1.phpt2 Test ord() function : usage variations - test values for $string argument
27 // array with different values for $input
37 // float values
42 // array values
47 // boolean values
53 // null values
H A Dsscanf_variation2.phpt26 // array with different values for $input
29 // integer values
36 // float values
41 // array values
46 // boolean values
52 // null values
H A Dstr_shuffle_variation1.phpt2 Test str_shuffle() function : usage variations - test values for $haystack argument
27 // array with different values for $input
30 // integer values
37 // float values
42 // array values
47 // boolean values
H A Dquoted_printable_decode_variation1.phpt2 Test quoted_printable_decode() function : usage variations - unexpected values for 'str' argument
11 * Testing quoted_printable_decode() : with different unexpected values for format argument other th…
14 echo "*** Testing quoted_printable_decode() : with unexpected values for 'str' argument ***\n";
35 //array of values to iterate over
36 $values = array(
88 foreach($values as $value) {
100 *** Testing quoted_printable_decode() : with unexpected values for 'str' argument ***
H A Dchunk_split_variation1.phpt2 Test chunk_split() function : usage variations - with unexpected values for 'str' argument
11 echo "*** Testing chunk_split() : with unexpected values for 'str' argument ***\n";
33 //different values for 'str'
34 $values = array(
88 for($count = 0; $count < count($values); $count++) {
90 var_dump( chunk_split($values[$count], $chunklen, $ending) );
100 *** Testing chunk_split() : with unexpected values for 'str' argument ***
H A Dcount_chars_variation1.phpt2 Test count_chars() function : usage variations - test values for $string 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 Dcrc32_variation1.phpt2 Test crc32() function : usage variations - unexpected values
18 * Testing crc32() : with unexpected values for str argument
21 echo "*** Testing crc32() : with unexpected values for str argument ***\n";
37 //array of values to iterate over
38 $values = array(
90 foreach($values as $value) {
102 *** Testing crc32() : with unexpected values for str argument ***
H A Dchunk_split_variation3.phpt2 Test chunk_split() function : usage variations - unexpected values for 'ending' argument
11 echo "*** Testing chunk_split() : unexpected values for 'ending' ***\n";
33 //different values for 'ending'
34 $values = array(
83 // loop through each element of values for 'ending'
84 for($count = 0; $count < count($values); $count++) {
86 var_dump( chunk_split($str, $chunklen, $values[$count]) );
95 *** Testing chunk_split() : unexpected values for 'ending' ***
H A Dprint_variation1.phpt28 // array with different values for $input
31 // integer values
38 // float values
43 // array values
48 // boolean values
/PHP-5.3/ext/standard/tests/array/
H A Darray_count_values2.phpt21 Warning: array_count_values(): Can only count STRING and INTEGER values! in %s on line %s
23 Warning: array_count_values(): Can only count STRING and INTEGER values! in %s on line %s
25 Warning: array_count_values(): Can only count STRING and INTEGER values! in %s on line %s
H A Darray_push_basic.phpt20 echo "\n-- Push values onto an indexed array --\n";
26 echo "\n-- Push values onto an associative array --\n";
36 -- Push values onto an indexed array --
51 -- Push values onto an associative array --
H A Darray_flip.phpt19 Warning: array_flip(): Can only flip STRING and INTEGER values! in %s on line %d
21 Warning: array_flip(): Can only flip STRING and INTEGER values! in %s on line %d
23 Warning: array_flip(): Can only flip STRING and INTEGER values! in %s on line %d
/PHP-5.3/ext/pdo_oci/tests/
H A Dpdo_oci_attr_autocommit_2.phpt25 $dbh->exec("insert into pdo_ac_tab (col1) values ('data 1')");
26 $dbh->exec("insert into pdo_ac_tab (col1) values ('data 2')");
39 $dbh->exec("insert into pdo_ac_tab (col1) values ('not committed #1')");
40 $dbh->exec("insert into pdo_ac_tab (col1) values ('data that is too long to fit and will barf')");
51 $dbh->exec("insert into pdo_ac_tab (col1) values ('data 3')");
66 $dbh->exec("insert into pdo_ac_tab (col1) values ('data 4')");
83 $dbh->exec("insert into pdo_ac_tab (col1) values ('not committed #2')");
85 $dbh->exec("insert into pdo_ac_tab (col1) values ('data 5')");
86 $dbh->exec("insert into pdo_ac_tab (col1) values ('data 6')");
/PHP-5.3/ext/posix/tests/
H A Dposix_seteuid_variation5.phpt2 Test function posix_seteuid() by substituting argument 1 with int values.
16 echo "*** Test substituting argument 1 with int values ***\n";
32 *** Test substituting argument 1 with int values ***
H A Dposix_setgid_variation5.phpt2 Test function posix_setgid() by substituting argument 1 with int values.
16 echo "*** Test substituting argument 1 with int values ***\n";
33 *** Test substituting argument 1 with int values ***
H A Dposix_setuid_variation5.phpt2 Test function posix_setuid() by substituting argument 1 with int values.
16 echo "*** Test substituting argument 1 with int values ***\n";
32 *** Test substituting argument 1 with int values ***
H A Dposix_ttyname_variation4.phpt2 Test function posix_ttyname() by substituting argument 1 with float values.
17 echo "*** Test substituting argument 1 with float values ***\n";
35 *** Test substituting argument 1 with float values ***

Completed in 71 milliseconds

12345678910>>...70