>  기사  >  php教程  >  echo和print语句

echo和print语句

WBOY
WBOY원래의
2016-06-17 08:21:50976검색

在php中,有两种基本的输出方法:echo  和  print

echo 和 print 之间的差异:

  • echo——能够输出一个以上的字符串,无返回值
  • print——只能输出一个字符串,并始终返回值为1

echo的语句:

  echo是一个语言结构,有无括号均可使用:echo 或echo();

  例如:

显示字符串:

php

echo "

PHP is fun!

";

echo "Hello  world!";

echo "计划","学习","PHP";

?>

显示变量:

$txt1 = "Learn PHP";

$txt2 = "***.com";

$cars = array("Volvo","BWM","AABB");

 

echo $txt1;

echo "
";

echo "Study PHP at $txt2";

echo "
";

echo "my car is a {$cars[0]}";

?>

 

print的语句:

  print也是语言结构,有无括号均可使用: print 或 print();

 

显示字符串:

print "

PHP is fun!

";

print ""Hello world!
";

print "I'm about to learn PHP!";

?>

显示变量:

$txt1="Learn PHP";

$txt2="W3School.com.cn";

$cars=array("Volvo","BMW","SAAB");

print $txt1;

print "
";

print "Study PHP at $txt2";

print "My car is a {$cars[0]}";

?>

好了,暂时就这些了,想起来再补,欢迎广大网友来喷!!!!!!

성명:
본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.