Home
last modified time | relevance | path

Searched refs:values (Results 176 – 200 of 1183) sorted by relevance

12345678910>>...48

/PHP-8.0/ext/standard/tests/strings/
H A Dstrip_tags_variation2.phpt2 Test strip_tags() function : usage variations - unexpected values for 'allowable_tags'
6 * testing functionality of strip_tags() by giving unexpected values for $allowable_tags argument
28 //array of values to iterate over
29 $values = array(
73 foreach($values as $value) {
H A Dchunk_split_variation8.phpt2 Test chunk_split() function : usage variations - different integer values for 'chunklen' with hered…
10 * passing different integer values for 'chunklen' and heredoc string for 'str' to chunk_split()
26 // different values for 'chunklen'
27 $values = array (
40 // loop through each element of values for 'chunklen'
41 for($count = 0; $count < count($values); $count++) {
44 var_dump( chunk_split($heredoc_str, $values[$count], $ending) );
H A Dsprintf_variation27.phpt2 Test sprintf() function : usage variations - char formats with char values
5 echo "*** Testing sprintf() : char formats with char values ***\n";
7 // array of char values
29 *** Testing sprintf() : char formats with char values ***
H A Dstrval_basic.phpt14 //array of values to iterate over
15 $values = array(
38 foreach($values as $value) {
/PHP-8.0/Zend/tests/
H A Ddval_to_lval_64.phpt11 $values = [
19 foreach ($values as $v) {
/PHP-8.0/ext/oci8/tests/
H A Dimp_res_get_1.phpt27 "insert into imp_res_get_1_tab_1 values (1, 'abcde')",
28 "insert into imp_res_get_1_tab_1 values (2, 'fghij')",
29 "insert into imp_res_get_1_tab_1 values (3, 'klmno')",
33 "insert into imp_res_get_1_tab_2 values ('t')",
34 "insert into imp_res_get_1_tab_2 values ('u')",
35 "insert into imp_res_get_1_tab_2 values ('v')",
H A Dimp_res_get_2.phpt27 "insert into imp_res_get_2_tab_1 values (1, 'abcde')",
28 "insert into imp_res_get_2_tab_1 values (2, 'fghij')",
29 "insert into imp_res_get_2_tab_1 values (3, 'klmno')",
33 "insert into imp_res_get_2_tab_2 values ('t')",
34 "insert into imp_res_get_2_tab_2 values ('u')",
35 "insert into imp_res_get_2_tab_2 values ('v')",
H A Ddefault_prefetch0.phpt17 "insert into default_prefetch_tab (id, value) values (1,1)",
18 "insert into default_prefetch_tab (id, value) values (1,1)",
19 "insert into default_prefetch_tab (id, value) values (1,1)",
H A Ddefault_prefetch1.phpt17 "insert into default_prefetch1_tab (id, value) values (1,1)",
18 "insert into default_prefetch1_tab (id, value) values (1,1)",
19 "insert into default_prefetch1_tab (id, value) values (1,1)",
H A Ddefault_prefetch2.phpt17 "insert into default_prefetch2_tab (id, value) values (1,1)",
18 "insert into default_prefetch2_tab (id, value) values (1,1)",
19 "insert into default_prefetch2_tab (id, value) values (1,1)",
H A Dfetch.phpt15 "insert into fetch_tab (id, value) values (1,1)",
16 "insert into fetch_tab (id, value) values (1,1)",
17 "insert into fetch_tab (id, value) values (1,1)",
H A Dfetch_all1.phpt15 "insert into fetch_all_tab (id, value) values (1,1)",
16 "insert into fetch_all_tab (id, value) values (1,1)",
17 "insert into fetch_all_tab (id, value) values (1,1)"
H A Dprefetch.phpt15 "insert into prefetch_tab (id, value) values (1,1)",
16 "insert into prefetch_tab (id, value) values (1,1)",
17 "insert into prefetch_tab (id, value) values (1,1)",
H A Dfetch_assoc.phpt13 "insert into fetch_assoc_tab values (1,1,null)",
14 "insert into fetch_assoc_tab values (1,1,null)",
15 "insert into fetch_assoc_tab values (1,1,null)"
/PHP-8.0/ext/standard/tests/general_functions/
H A Dfloatval.phpt5 echo "*** Testing floatval() with valid float values ***\n";
6 // different valid float values
32 float values, expected output:float value for valid floating point number */
39 echo "\n*** Testing doubleval() with valid float values ***\n";
41 float values, expected output:float value for valid floating point number */
95 *** Testing floatval() with valid float values ***
118 *** Testing doubleval() with valid float values ***
H A Dproc_nice_variation5.phpt2 Test function proc_nice() by substituting argument 1 with int values.
18 echo "*** Test substituting argument 1 with int values ***\n";
35 *** Test substituting argument 1 with int values ***
/PHP-8.0/ext/standard/tests/array/
H A Darray_map_variation3.phpt18 /*1*/ array(1, 2), // array with default keys and numeric values
19 array(1.1, 2.2), // array with default keys & float values
21 array(false,true), // array with default keys and boolean values
27 /*8*/ array(1 => "one", 2 => "two", 3 => "three"), // explicit numeric keys, string values
28 array("one" => 1, "two" => 2, "three" => 3 ), // string keys & numeric values
29 array( 1 => 10, 2 => 20, 4 => 40, 3 => 30), // explicit numeric keys and numeric values
33 // associative array, containing null/empty/boolean values as key/value
H A Darray_unique_variation2.phpt34 // heredoc with quoted strings and numeric values
44 /*1*/ array(1, 2, 2, 1), // with default keys and numeric values
45 array(1.1, 2.2, 1.1), // with default keys & float values
46 array(false, true, false), // with default keys and boolean values
54 /*9*/ array(1 => "one", 2 => "two", 2 => "two"), // explicit numeric keys, string values
55 array("one" => 1, "two" => 2, "1" => 1 ), // string keys & numeric values
56 array( 1 => 10, 2 => 20, 4 => 40, 5 => 10), // explicit numeric keys and numeric values
60 // associative array, containing null/empty/boolean values as key/value
/PHP-8.0/ext/standard/tests/url/
H A Dparse_url_basic_010.phpt2 Test parse_url() function : check values of URL related constants
6 * check values of URL related constants
H A Dbase64_encode_basic_002.phpt6 * Test base64_encode with single byte values.
11 $values = array(
22 foreach($values as $str) {
/PHP-8.0/Zend/tests/type_declarations/union_types/
H A Dtype_checking_weak.phpt21 foreach ($values as $value) {
47 $values = [
51 test('int|float', $values);
52 test('int|float|false', $values);
53 test('int|float|bool', $values);
54 test('int|bool', $values);
55 test('int|string|null', $values);
56 test('string|bool', $values);
57 test('float|array', $values);
58 test('string|array', $values);
[all …]
/PHP-8.0/ext/ctype/tests/
H A Dctype_alnum_variation3.phpt2 Test ctype_alnum() function : usage variations - different string values
15 $values = array(
42 // loop through each element of $values to test behaviour of ctype_alnum()
44 foreach($values as $value) {
/PHP-8.0/tests/classes/
H A D__call_003.phpt7 function __call($name, $values)
9 $values[0][0] = 'changed';
/PHP-8.0/Zend/tests/generators/
H A Dgenerator_in_multipleiterator.phpt20 foreach ($it as $values) {
21 var_dump($values);
/PHP-8.0/ext/pdo_dblib/tests/
H A Dbug_47588.phpt13 $db->query('INSERT INTO "Test Table" ("My Field") values(1)');
14 $db->query('INSERT INTO "Test Table" ("My Field") values(2)');
15 $db->query('INSERT INTO "Test Table" ("My Field") values(3)');

Completed in 60 milliseconds

12345678910>>...48