Home Backend Development PHP Tutorial str_pad() pads a string into a string of specified length_PHP tutorial

str_pad() pads a string into a string of specified length_PHP tutorial

Jul 21, 2016 pm 02:55 PM
str filling string byte Safety Will designation of length

/**
* Fill the string into a string of specified length (multi-byte safe)
* @param string $str specifies the filled string
* @param int $len specifies the filled string The length, if the value is negative or less than the length of the string, it will not be filled
* @param string $pad_str The string to be filled
* @param int $pad_type specifies the direction of filling STR_PAD_RIGHT, STR_PAD_LEFT or STR_PAD_BOTH
* @return string
*/

// string str_pad(string $str, int $len, string $pad_str, string $pad_type);

echo str_pad($result2 [0],6,"0",STR_PAD_LEFT);

www.bkjia.comtruehttp: //www.bkjia.com/PHPjc/364479.htmlTechArticle/** * Fill the string into a string of specified length (multi-byte safe) * @param string $str specifies the padded string* @param int $len specifies the length of the padded string, if the value...
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn

Hot Article Tags

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

How should the Java framework security architecture design be balanced with business needs? How should the Java framework security architecture design be balanced with business needs? Jun 04, 2024 pm 02:53 PM

How should the Java framework security architecture design be balanced with business needs?

How to implement PHP security best practices How to implement PHP security best practices May 05, 2024 am 10:51 AM

How to implement PHP security best practices

Security configuration and hardening of Struts 2 framework Security configuration and hardening of Struts 2 framework May 31, 2024 pm 10:53 PM

Security configuration and hardening of Struts 2 framework

Implementing Machine Learning Algorithms in C++: Security Considerations and Best Practices Implementing Machine Learning Algorithms in C++: Security Considerations and Best Practices Jun 01, 2024 am 09:26 AM

Implementing Machine Learning Algorithms in C++: Security Considerations and Best Practices

Detailed explanation of Golang string modification: dynamic adjustment and variability Detailed explanation of Golang string modification: dynamic adjustment and variability Apr 08, 2024 pm 03:27 PM

Detailed explanation of Golang string modification: dynamic adjustment and variability

Which wallet is safer for SHIB coins? (Must read for newbies) Which wallet is safer for SHIB coins? (Must read for newbies) Jun 05, 2024 pm 01:30 PM

Which wallet is safer for SHIB coins? (Must read for newbies)

Uncovering the secrets behind Golang strings: mutable or immutable Uncovering the secrets behind Golang strings: mutable or immutable Apr 08, 2024 am 11:27 AM

Uncovering the secrets behind Golang strings: mutable or immutable

How C++ technology promotes software security and reliability How C++ technology promotes software security and reliability Jun 02, 2024 pm 02:54 PM

How C++ technology promotes software security and reliability

See all articles