Searched refs:STR_PAD_BOTH (Results 1 – 3 of 3) sorted by relevance
/PHP-7.2/ext/standard/tests/strings/ |
H A D | str_pad_variation4.phpt | 35 2, // == STR_PAD_BOTH 102 Warning: str_pad(): Padding type has to be STR_PAD_LEFT, STR_PAD_RIGHT, or STR_PAD_BOTH in %s on li… 106 Warning: str_pad(): Padding type has to be STR_PAD_LEFT, STR_PAD_RIGHT, or STR_PAD_BOTH in %s on li… 110 Warning: str_pad(): Padding type has to be STR_PAD_LEFT, STR_PAD_RIGHT, or STR_PAD_BOTH in %s on li… 114 Warning: str_pad(): Padding type has to be STR_PAD_LEFT, STR_PAD_RIGHT, or STR_PAD_BOTH in %s on li… 118 Warning: str_pad(): Padding type has to be STR_PAD_LEFT, STR_PAD_RIGHT, or STR_PAD_BOTH in %s on li… 122 Warning: str_pad(): Padding type has to be STR_PAD_LEFT, STR_PAD_RIGHT, or STR_PAD_BOTH in %s on li…
|
H A D | str_pad.phpt | 17 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-7.2/ext/standard/ |
H A D | string.c | 70 #define STR_PAD_BOTH 2 macro 86 REGISTER_LONG_CONSTANT("STR_PAD_BOTH", STR_PAD_BOTH, CONST_CS | CONST_PERSISTENT); in register_string_constants() 5381 if (pad_type_val < STR_PAD_LEFT || pad_type_val > STR_PAD_BOTH) { 5407 case STR_PAD_BOTH:
|
Completed in 25 milliseconds