Heim >Backend-Entwicklung >PHP-Tutorial >PHP日记(一)字符串操作 php拆分字符串 php字符串合并 php字符串换

PHP日记(一)字符串操作 php拆分字符串 php字符串合并 php字符串换

WBOY
WBOYOriginal
2016-07-29 08:49:081179Durchsuche

一、字符串的格式化

1、字符串的处理:trim()、ltrim()、rtrim()

$name=trim($_POST['name']);
$name=trim($_POST['password']);
$name=trim($_POST['email']);

trim()函数可以去除字符串的开始位置和结束位置的空格,并将结果字符串返回,默认情况下去除的字符是换行符和回车符(\n和\r),水平和垂直制表符(\t和X0B)

ltrim()函数只从字符的开始处(左边)去除空格

rtrim()函数只从函数的结束处(右边)去除空格

2、格式化字符串以便显示

使用HTML格式化:n12br()函数

在字符串中的新行(\n)之前插入换行符

<span style="white-space:pre">	</span><pre name="code" class="html"><?php echo nl2br("One line.\nAnother line.");
?>

结果
One line.
Another line.

②为打印输出而格式化字符串

printf()结构

$s="world");
printf("Hello %s",$s);

3.改变字符串中的字母大小写

函数 描述 使用   $subject=Hello World 返回值
strtoupper() 将字符串转为大写 strtoupper($subject ) HELLO WORLD
strtolower() 将字符串转为小写 strtolower($subject ) hello world
ucfirst() 如果字符串第一个字符是字符,将其转为大写 ucfirst($subject )  Hello world
ucwords() 将字符串的每个单词的首字母大写 ucwords($subject ) Hello World


---------------------------------------------------------
未完

以上就介绍了PHP日记(一)字符串操作,包括了php,字符串方面的内容,希望对PHP教程有兴趣的朋友有所帮助。

Stellungnahme:
Der Inhalt dieses Artikels wird freiwillig von Internetnutzern beigesteuert und das Urheberrecht liegt beim ursprünglichen Autor. Diese Website übernimmt keine entsprechende rechtliche Verantwortung. Wenn Sie Inhalte finden, bei denen der Verdacht eines Plagiats oder einer Rechtsverletzung besteht, wenden Sie sich bitte an admin@php.cn