Home
last modified time | relevance | path

Searched refs:input (Results 76 – 100 of 827) sorted by last modified time

12345678910>>...34

/PHP-5.4/ext/standard/tests/strings/
H A Dstrncmp_variation7.phpt14 /* A binary function should not expect a null terminated string, and it should treat input as a raw…
H A Dstr_shuffle_variation1.phpt27 // array with different values for $input
73 foreach($inputs as $input) {
75 var_dump( str_shuffle($input) );
H A Dstrip_tags_variation1.phpt13 * testing functionality of strip_tags() by giving unexpected input values for $str argument
H A Dsscanf_basic1.phpt6 * Description: Parses input from a string according to a format
H A Dsscanf_basic2.phpt6 * Description: Parses input from a string according to a format
H A Dsscanf_basic3.phpt7 * Description: Parses input from a string according to a format
H A Dsscanf_basic4.phpt7 * Description: Parses input from a string according to a format
H A Dsscanf_basic6.phpt13 * Description: Parses input from a string according to a format
H A Dsscanf_variation2.phpt6 * Description: Parses input from a string according to a format
26 // array with different values for $input
74 foreach($inputs as $input) {
76 var_dump( sscanf($str, $input) );
H A Dstr_pad_variation3.phpt5 /* Prototype : string str_pad ( string $input , int $pad_length [, string $pad_string [, int $…
11 * and expected type for '$input' and '$pad_length'
30 // array with different values for $input
73 //defining '$input' argument
74 $input = "Test string";
81 var_dump( str_pad($input, $pad_length, $pad_string) );
H A Dstr_pad_variation5.phpt14 /* Prototype : string str_pad ( string $input , int $pad_length [, string $pad_string [, int $…
20 * and expected type for '$input'
25 //defining '$input' argument
26 $input = "Test string";
28 var_dump( str_pad($input, $pad_length) );
H A Dstr_repeat.phpt7 /* Prototype: string str_repeat ( string $input, int $multiplier );
8 Description: Returns input repeated multiplier times. multiplier has to be
29 foreach($variations as $input) {
30 echo "\n--- str_repeat() of '$input' ---\n" ;
33 echo str_repeat($input, $n)."\n";
40 foreach ( $variations as $input ) {
41 echo "\n--- str_repeat() of '$input' ---\n" ;
44 var_dump( str_repeat($input, $multiplier) );
58 var_dump( str_repeat($input[0]) ); // args < expected
59 var_dump( str_repeat($input[0], 3, 4) ); // args > expected
[all …]
H A Dstr_replace.phpt102 echo "\n*** Testing Miscelleneous input data ***\n";
858 *** Testing Miscelleneous input data ***
H A Dstr_replace_variation3.phpt15 echo "\n*** Testing Miscelleneous input data ***\n";
146 *** Testing Miscelleneous input data ***
H A Dsscanf_basic5.phpt7 * Description: Parses input from a string according to a format
H A Dsscanf_basic7.phpt7 * Description: Parses input from a string according to a format
H A Dsscanf_basic8.phpt7 * Description: Parses input from a string according to a format
H A Dsscanf_error.phpt7 * Description: Parses input from a string according to a format
H A Dsscanf_variation1.phpt6 * Description: Parses input from a string according to a format
26 // array with different values for $input
74 foreach($inputs as $input) {
76 var_dump( sscanf($input, $format) );
H A Dstr_getcsv_001.phpt6 // string input[, string delimiter[, string enclosure[, string escape]]]
H A Dstr_pad.phpt19 echo "\n#### variations with input string and pad-length ####\n";
20 /* different input string variation */
89 #### variations with input string and pad-length ####
H A Dstr_pad_variation1.phpt2 Test str_pad() function : usage variations - unexpected inputs for '$input' argument
5 /* Prototype : string str_pad ( string $input , int $pad_length [, string $pad_string [, int $…
10 /* Test str_pad() function: with unexpected inputs for '$input'
14 echo "*** Testing str_pad() function: with unexpected inputs for 'input' argument ***\n";
30 // array with different values for $input
78 foreach($inputs as $input) {
80 var_dump( str_pad($input, $pad_length) );
89 *** Testing str_pad() function: with unexpected inputs for 'input' argument ***
H A Dstr_pad_variation2.phpt5 /* Prototype : string str_pad ( string $input , int $pad_length [, string $pad_string [, int $…
11 * and expected type for '$input'
30 // array with different values for $input
72 //defining '$input' argument
73 $input = "Test string";
79 var_dump( str_pad($input, $pad_length) );
H A Dstr_pad_variation4.phpt5 /* Prototype : string str_pad ( string $input , int $pad_length [, string $pad_string [, int $…
11 * and expected type for '$input', '$pad_length' and '$pad_string'
27 // array with different values for $input
75 //defining '$input' argument
76 $input = "Test string";
84 var_dump( str_pad($input, $pad_length, $pad_string, $pad_type) );
H A Dsetlocale_basic1.phpt21 /* test setlocale by specifying a specific locale as input */

Completed in 36 milliseconds

12345678910>>...34