Home
last modified time | relevance | path

Searched refs:STR_PAD_BOTH (Results 1 – 3 of 3) sorted by relevance

/PHP-5.3/ext/standard/tests/strings/
H A Dstr_pad_variation4.phpt33 2, // == STR_PAD_BOTH
100 Warning: str_pad(): Padding type has to be STR_PAD_LEFT, STR_PAD_RIGHT, or STR_PAD_BOTH in %s on li…
104 Warning: str_pad(): Padding type has to be STR_PAD_LEFT, STR_PAD_RIGHT, or STR_PAD_BOTH in %s on li…
108 Warning: str_pad(): Padding type has to be STR_PAD_LEFT, STR_PAD_RIGHT, or STR_PAD_BOTH in %s on li…
112 Warning: str_pad(): Padding type has to be STR_PAD_LEFT, STR_PAD_RIGHT, or STR_PAD_BOTH in %s on li…
116 Warning: str_pad(): Padding type has to be STR_PAD_LEFT, STR_PAD_RIGHT, or STR_PAD_BOTH in %s on li…
120 Warning: str_pad(): Padding type has to be STR_PAD_LEFT, STR_PAD_RIGHT, or STR_PAD_BOTH in %s on li…
H A Dstr_pad.phpt17 var_dump( str_pad($input_string, $pad_length, $pad_string, STR_PAD_BOTH) );
49 var_dump( str_pad($input_string, $pad_length, $pad_string, STR_PAD_BOTH) );
61 var_dump( str_pad($input_string, $pad_length, $pad_string, STR_PAD_BOTH) );
375 Warning: str_pad(): Padding type has to be STR_PAD_LEFT, STR_PAD_RIGHT, or STR_PAD_BOTH in %s on li…
/PHP-5.3/ext/standard/
H A Dstring.c69 #define STR_PAD_BOTH 2 macro
85 REGISTER_LONG_CONSTANT("STR_PAD_BOTH", STR_PAD_BOTH, CONST_CS | CONST_PERSISTENT); in register_string_constants()
4930 if (pad_type_val < STR_PAD_LEFT || pad_type_val > STR_PAD_BOTH) {
4954 case STR_PAD_BOTH:

Completed in 15 milliseconds