PHP中echo与print区别?

  • 来源:网络
  • 更新日期:2020-07-24

摘要:PHP中echo与print区别?1、echo能接受N个字符串类型的参数,而print只能接收1个字符串类型的参数;2、echo没有返回值, print有返回值,其值永远为int类型的1。两者相同点: echo 和 pr

PHP中echo与print区别?

1、echo能接受N个字符串类型的参数,而print只能接收1个字符串类型的参数;

2、echo没有返回值, print有返回值,其值永远为int类型的1。

两者相同点:

echo 和 print 都是语言结构(官方文档解释为language construct);

echo 和 print 都是用来输出字符串的;

当同时只有一个参数的时候,echo 和 print 后面的括号(parenthesis)都是可选的,即:echo ($argument1) 等价于 echo $argument1,print(argument)等价于print argument;

echo 和 print 在输出之前,都会将参数的进行转换,尝试转换为字符串类型。


推荐教程:《PHP》