Home > php教程 > php手册 > body text

php中str

WBOY
Release: 2016-06-06 19:50:57
Original
1812 people have browsed it

欢迎进入Linux社区论坛,与200万技术人员互动交流 >>进入 php的str_pad()函数是把字符串填充为指定的长度,和str_repeat有类似之处,至于str_repeat的用法在此不作解释,有兴趣的可以查找手册. 语法 str_pad(string,length,pad_string,pad_type) 参数 描述 stri

欢迎进入Linux社区论坛,与200万技术人员互动交流 >>进入

  php的str_pad()函数是把字符串填充为指定的长度,和str_repeat有类似之处,至于str_repeat的用法在此不作解释,有兴趣的可以查找手册.

  语法

  str_pad(string,length,pad_string,pad_type)

  参数 描述

  string 必需。规定要填充的字符串。

  length 必需。规定新字符串的长度。如果该值小于原始字符串的长度,则不进行任何操作。

  pad_string 可选。规定供填充使用的字符串。默认是空白。

  pad_type 可选。规定填充字符串的那边。

  可能的值:

  STR_PAD_BOTH - 填充到字符串的两头。如果不是偶数,则右侧获得额外的填充。

  STR_PAD_LEFT - 填充到字符串的左侧。

  STR_PAD_RIGHT - 填充到字符串的右侧。这是默认的。

  例子 1

  输出:

  Hello World.........

  例子 2

  输出:

  .........Hello World

  例子 3

  输出:

  .:.:Hello World.:.:.

php中str

Related labels:
source:php.cn
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
Popular Recommendations
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template