Blogger Information
Blog 9
fans 0
comment 5
visits 10239
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
1117 简述PHP五种打印方法
酒淋后
Original
4160 people have browsed it

简述PHP五种打印方法

一、echo 方法:

echo 读音:艾阔;PHP中用于网页最常见的打印输出方法之一;

特点:输出一个以上的字符串;如果没有值,则不输出,但会保留空的一行;

代码例一:

  1. <?php
  2. $test = "";
  3. echo $test;
  4. ?>`

结果:

代码例二:

  1. <?php
  2. $test = "hello word!"
  3. echo $test;
  4. ?>

结果:
hello word!

二、print 方法:

特点:print打印方法是有返回值的!其功能与 echo打印方法基本相同;
代码例一:

  1. <?php
  2. $test = "nihao";
  3. print $test;
  4. echo '<br>';
  5. echo $test;
  6. echo '<br>';
  7. echo print $test;
  8. ?>

结果:

  1. nihao
  2. nihao
  3. nihao1

差异部分: nihao 后面多了个 1 ,这个1就是print 方法的返回值;

三、var_dump() 方法:

特点:返回变量的完整信息,包括它的类型和内容;
代码举例:

  1. <?php
  2. $test='nihaoma';
  3. var_dump($test);
  4. ?>

结果:

  1. string(7) "nihaoma"

四、export() 方法:

可以将变量的信息转换成一个字符串;
不会把内容输出到用户看到的页面;

  1. var_export($res,ture);

五、print_r() 方法:

用途:print_r()方法主要用于打印数组;

代码举例:

  1. <?php
  2. $arr = [1,2,3,4,5];
  3. print_r($arr);
  4. ?>

输出结果:

  1. Array ( [0] => 1 [1] => 2 [2] => 3 [3] => 4 [4] => 5 )

六、总结

以上五种打印输出的方法各有所长,在实际开发当中,根据实际情况使用,重点掌握每一个方法的特点或者它的用途;

Correcting teacher:灭绝师太灭绝师太

Correction status:qualified

Teacher's comments:
Statement of this Website
The copyright of this blog article belongs to the blogger. Please specify the address when reprinting! If there is any infringement or violation of the law, please contact admin@php.cn Report processing!
All comments Speak rationally on civilized internet, please comply with News Comment Service Agreement
1 comments
灭绝师太 2020-12-07 17:46:40
var_export($res,ture);不会把内容输出到用户看到的页面,但是有返回值,只是不会输出到页面上,可以把返回值存进文件中,常用于线上调试~
1 floor
Author's latest blog post