码迷,mamicode.com
首页 > Web开发 > 详细

php字符串处理

时间:2014-07-19 14:23:56      阅读:234      评论:0      收藏:0      [点我收藏+]

标签:des   style   blog   http   strong   os   

bubuko.com,布布扣

字符串的输出

echo和print和printf和sprintf的区别

1. echo函数:

输出函数,是命令,不能返回值。echo后面可以跟很多个参数,之间用分号隔开,如:
echo $myvar1;
echo 1,2,$myvar,"<b>bold</b>";


2. print函数:

是函数,可以返回一个值,只能有一个参数。

int print ( string arg )

Outputs arg . Returns 1 , always.


3. printf函数:

int printf ( string format [, mixed args [, mixed ...]] )

Produces output according to format , which is described in the documentation for sprintf() .

Returns the length of the outputted string.


把文字格式化以后输出,如:
$name="hunte";
$age=25;
printf("my name is %s, age %d", $name, $age);


4. sprintf函数:

string sprintf ( string format [, mixed args [, mixed ...]] )

Returns a string produced according to the formatting string format .


跟printf相似,但不打印,而是返回格式化后的文字,其他的与printf一样。


%d 十进制有符号整数
%u 十进制无符号整数
%f 浮点数
%s 字符串
%c 单个字符
%p 指针的值
%e 指数形式的浮点数
%x, %X 无符号以十六进制表示的整数
%o 无符号以八进制表示的整数
%g 自动选择合适的表示法

 

strlen获取字符串的长度

字符串大小写zhuanh

strtoupper 转大写

strtolower 转小写

ucfirst 首字母转大写

ucwords 单词首字母转大写

strlen获取字符串长度

strrrev翻转字符串

php字符串处理,布布扣,bubuko.com

php字符串处理

标签:des   style   blog   http   strong   os   

原文地址:http://www.cnblogs.com/sdya/p/3854591.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!