Searched refs:STR_PAD_RIGHT (Results 1 – 3 of 3) sorted by relevance
/PHP-5.4/ext/standard/tests/strings/ |
H A D | str_pad_variation4.phpt | 32 1, // == STR_PAD_RIGHT 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 D | str_pad.phpt | 16 var_dump( str_pad($input_string, $pad_length, $pad_string, STR_PAD_RIGHT) ); 48 var_dump( str_pad($input_string, $pad_length, $pad_string, STR_PAD_RIGHT) ); 60 var_dump( str_pad($input_string, $pad_length, $pad_string, STR_PAD_RIGHT) ); 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.4/ext/standard/ |
H A D | string.c | 74 #define STR_PAD_RIGHT 1 macro 90 REGISTER_LONG_CONSTANT("STR_PAD_RIGHT", STR_PAD_RIGHT, CONST_CS | CONST_PERSISTENT); in register_string_constants() 5292 long pad_type_val = STR_PAD_RIGHT; /* The padding type value */ 5325 case STR_PAD_RIGHT:
|
Completed in 28 milliseconds