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

PHP输出语句大杂烩

时间:2014-08-22 21:07:19      阅读:324      评论:0      收藏:0      [点我收藏+]

标签:style   blog   color   使用   io   strong   for   ar   div   

一 echo
echo() 实际上不是一个函数,是php语句,因此您无需对其使用括号。不过,如果您希望向 echo() 传递一个以上的参数,那么使用括号会发生解析错误。而且echo是返回void的,并不返回值,所以不能使用它来赋值。

 1 <?php
 2  $a = echo("xshell"); // 错误!不能用来赋值
 3  echo "xshell"; // xshell
 4  echo ("xshell"); // xshell
 5  echo ("xshell","net"); //发生错误,有括号不能传递多个参数
 6  echo "xshell"," net"," is", " web";  // 不用括号的时候可以用逗号隔开多个值, 会输出 xshell net is web
 7  echo "xshell is good web.";  // 不管是否换行,最终显示都是为一行 xshell is good web.
 8  echo "$fistname net"; // 如果 $firstname = "xshell", 则会输出 xshell net.
 9  echo ‘$firstname net‘; // 由于使用单引号,所以不会输出$firstname的值,而是输出 $firstname net
10 ?>

二 print
print() 和 echo() 用法一样,但是echo速度会比print快一点点。实际上它也不是一个函数,因此您无需对其使用括号。不过,如果您希望向print() 传递一个以上的参数,那么使用括号会发生解析错误。注意print总是返回1的,这个和echo不一样,也就是可以使用print来赋值,不过没有实际意 义。

1 <?php
2  $a = print("xshell"); // 这个是允许的
3  echo $a; // $a的值是1
4 ?>

三 print_r 函数
print_r函数打印关于变量的易于理解的信息。
语法:mixed print_r ( mixed $expression [, bool return ] )
如果变量是string , integer or float , 将会直接输出其值,如果变量是一个数组,则会输出一个格式化后的数组,便于阅读,也就是有key和value对应的那种格式。对于object对象类同。 print_r有两个参数,第一个是变量,第二个可设为true,如果设为true,则会返回字符串,否则返回布尔值TRUE。

1 <?php
2  $a="xshell";
3  $c = print_r($a);
4  echo $c;  // $c的值是TRUE
5  $c = print_r($a, ture);
6  echo $c; // $c的值是字符串xshell
7 ?>

四 printf函数
printf函数返回一个格式化后的字符串。
语法:printf(format,arg1,arg2,arg++)
参数 format 是转换的格式,以百分比符号 (“%”) 开始到转换字符结束。下面是可能的 format 值:

 1 %% – 返回百分比符号
 2 %b – 二进制数
 3 %c – 依照 ASCII 值的字符
 4 %d – 带符号十进制数
 5 %e – 可续计数法(比如 1.5e+3 6 %u – 无符号十进制数
 7 %f – 浮点数(local settings aware)
 8 %F – 浮点数(not local settings aware)
 9 %o – 八进制数
10 %s – 字符串
11 %x – 十六进制数(小写字母)
12 %X – 十六进制数(大写字母)

arg1, arg2, arg++ 等参数将插入到主字符串中的百分号 (%) 符号处。该函数是逐步执行的,在第一个 % 符号中,插入 arg1,在第二个 % 符号处,插入 arg2,依此类推。如果 % 符号多于 arg 参数,则您必须使用占位符。占位符被插入 % 符号之后,由数字和 “/$” 组成。可使用数字指定显示的参数,详情请看例子。

1 <?php
2  printf("My name is %s %s。","xshell", "net"); // My name is xshell net。
3  printf("My name is %1/$s %1/$s","xshell", "net"); // 在s前添加1/$或2/$.....表示后面的参数显示的位置,此行输出 My name is Ricky Ricky因为只显示第一个参数两次。
4  printf("My name is %2/$s %1/$s","xshell", "net"); // My name is net xshell
5 ?>

五 sprintf函数
此函数使用方法和printf一样,唯一不同的就是该函数把格式化的字符串写写入一个变量中,而不是输出来。

1 <?php
2  sprintf("My name is %1/$s %1/$s","xshell", "net");  //你会发现没有任何东西输出的。
3  $out = sprintf("My name is %1/$s %2/$s","xshell", "net");
4  echo $out;  //输出 My name is xshell net
5 ?>

六 var_dump函数
功能: 输出变量的内容、类型或字符串的内容、类型、长度。常用来调试。

1 <?php
2  $a=100;
3  var_dump($a); //int(100)
4  $a=100.356;
5  var_dump($a); //float(100.356)
6 ?>

 

PHP输出语句大杂烩

标签:style   blog   color   使用   io   strong   for   ar   div   

原文地址:http://www.cnblogs.com/xymqx/p/3930188.html

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