php的字符串格式化
1.字符串的整理:chop(),itrim(),trim()trim()函数用来整理用户输入数据,如下显示:
$name=trim($name);
$email=trim($email);
tirm()函数可以去除字符串开始位置和结束位置的空格,并将结果字符串返回。默认情况下去除换行符(n)回车符(r)水平(t)和垂直制表符(x0B) 字符串结束符号()和空格。
以下是来自于手册
Without the second parameter, rtrim() will strip these characters:
* " " (ASCII 32 (0x20)), an ordinary space.
* "t" (ASCII 9 (0x09)), a tab.
* "n" (ASCII 10 (0x0A)), a new line (line feed).
* "r" (ASCII 13 (0x0D)), a carriage return.
* "" (ASCII 0 (0x00)), the NUL-byte.
* "x0B" (ASCII 11 (0x0B)), a vertical tab
Example#1 Usage example of rtrim()
<?php
$text = "ttThese are a few words :) ... ";
$binary = "x09Example stringx0A";
$hello = "Hello World";
var_dump($text, $binary, $hello);
print "n";
$trimmed = rtrim($text);
var_dump($trimmed);
$trimmed = rtrim($text, " t.");
var_dump($trimmed);
$trimmed = rtrim($hello, "Hdle");
var_dump($trimmed);
// trim the ASCII control characters at the end of $binary
// (from 0 to 31 inclusive)
$clean = rtrim($binary, "x00..x1F");
var_dump($clean);
?>
上例将输出:
string(32) " These are a few words :) ... "
string(16) " Example string
"
string(11) "Hello World"
string(30) " These are a few words :) ..."
string(26) " These are a few words :)"
string(9) "Hello Wor"
string(15) " Example string"
函数explode() implode() join()
explode — 使用一个字符串分割另一个字符串
字符串的排序 strcmp() strcasecmp() strnatcmp()
在字符串中查找字符串 strstr() strchr() strrchr() stristr()
太多了,慢慢看手册
<
补充:Php教程,Php常用代码
上一个:php的转义字符串
下一个:php调用js文件的好办法
- 更多php疑问解答:
- php使用imagick将image图片转化为字符串模式
- php通过gd实现图片图片转换为字符图代码
- PHP把图片转base64代码,php把base64代码转换为图片并保存
- PHP把图片base64转换成图片并保存成文件
- wordpress问题<?php if(have_posts()) : ?>
- 建设一个搜索类网站php还是jsp,数据库那个好
- 没理由啊 php代码无法执行,貌似有语法错误。。。
- 关于PHP 和API 的一段代码不懂啊不懂,请高手指点! 这是淘宝API的
- php语言中,序列化到底在那里使用?它的优势是什么?劣势是什么?
- PHP函数等于或等于应该怎么表达
- 请教php高手,解决basename函数和mb_substr函数处理中文文件名称的解决方法,在上传文件时,总是出现乱码
- .NET,PHP,JAVA,JS优秀点分别是?
- 织梦cms 在环境监测的时候 wamp5 gd不支持 是为什么。;extension=php_gd2.dll这一句我删除了还是不显示?
- 我想学PHP。1.应安装什么编程工具? 2. 装LIUNX系统是装简易的还是?什么版本的?3.还应安装什么?
- <?php 和 <? 有什么区别