We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Something such as
/** * Mimic str_pad. * * @param string $number * The number. * @param int $pad_length * The pad length. * @param string $pad_string * The string. * * @return string * Return the padded string */ public function strpad($number, $pad_length = 2, $pad_string = "0") { return str_pad($number, $pad_length, $pad_string, STR_PAD_LEFT); }
The text was updated successfully, but these errors were encountered:
strp_pad
Successfully merging a pull request may close this issue.
Something such as
The text was updated successfully, but these errors were encountered: