echo和print语句,echoprint语句
程序员文章站
2024-01-15 12:07:16
...
echo和print语句,echoprint语句
在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]}";
?>
好了,暂时就这些了,想起来再补,欢迎广大网友来喷!!!!!!
推荐阅读
-
echo和print语句,echoprint语句
-
SQL Server 数据库管理常用的SQL和T-SQL语句
-
使用 MERGE 在单个语句中对表执行 INSERT 和 UPDATE 操作
-
SQL语句在Access和SQL Server里面的不同
-
Local prefixed index和Local nonprefixed index对select语句的性能影响分析
-
mysql依据答题得分和用时计算求某一个用户排名的sql语句
-
MySQL查询语句执行过程及性能优化-基本概念和EXPLAIN语句简介_MySQL
-
echo 和print有哪些异同?
-
echo, print, printf 和 sprintf 区别
-
Mysql中文乱码以及导出为sql语句和Excel问题解决_MySQL