php echo 输出字符串函数详解


Posted in PHP onMay 13, 2010
echo "asd";//字符串 
echo "ads$c";//字符串+变量 
echo 'ads$c';//字符串 asd$c $c不是变量 
echo "sd"."vs"; 
echo "sd","vs"; 
echo $a; 
echo $a.$b; 
echo $a,$b; 
echo $a.$b.$c; 
echo $a,$b,$c; 
echo "kaskd{$c}asd"; 
echo "kakskd{$arr['lo']}"; 
echo "kakskd{$obj->a}"; 
echo "kaskd".$c."kasd"; 
echo "kaskd".$arr['lo']."kasd"; 
echo "kaskd".$obj->a."kasd"; 
echo "kaskd".func($c)."kasd"; 
echo "kaksk".($a+1)."dkkasd"; 
echo $c."jaksd"; 
echo $c,"jaksd"; 
//php多行输出方法 
echo <<<END 
This uses the "here document" syntax to output 
END; 
//输出简写 
<?php echo $a;?> <?=$a?>
<?php 
echo "Hello World"; echo "This spans 
multiple lines. The newlines will be 
output as well"; 
echo "This spans\nmultiple lines. The newlines will be\noutput as well."; 
echo "Escaping characters is done \"Like this\"."; 
// You can use variables inside of an echo statement 
$foo = "foobar"; 
$bar = "barbaz"; 
echo "foo is $foo"; // foo is foobar 
// You can also use arrays 
$baz = array("value" => "foo"); 
echo "this is {$baz['value']} !"; // this is foo ! 
// Using single quotes will print the variable name, not the value 
echo 'foo is $foo'; // foo is $foo 
// If you are not using any other characters, you can just echo variables 
echo $foo; // foobar 
echo $foo,$bar; // foobarbarbaz 
// Some people prefer passing multiple parameters to echo over concatenation. 
echo 'This ', 'string ', 'was ', 'made ', 'with multiple parameters.', chr(10); 
echo 'This ' . 'string ' . 'was ' . 'made ' . 'with concatenation.' . "\n"; 
echo <<<END 
This uses the "here document" syntax to output 
multiple lines with $variable interpolation. Note 
that the here document terminator must appear on a 
line with just a semicolon. no extra whitespace! 
END; 
// Because echo does not behave like a function, the following code is invalid. 
($some_var) ? echo 'true' : echo 'false'; 
// However, the following examples will work: 
($some_var) ? print 'true' : print 'false'; // print is also a construct, but 
// it behaves like a function, so 
// it may be used in this context. 
echo $some_var ? 'true': 'false'; // changing the statement around 
?>

以下是官方手册说明:
Definition and Usage
定义和用法
The echo() function outputs one or more strings.
echo()函数的作用是:输出一个或多个字符串。
Syntax
语法
echo(strings)
Parameter参数 Description描述
strings Required. One or more strings to be sent to the output
必要参数。指定一个或多个需要被发送到结果中的字符串
Tips and Notes
提示和注意点
Note: The echo() function is not actually a function, so you are not required to use parentheses with it. However, if you want to pass more than one parameter to echo(), using parentheses will generate a parse error.
注意:echo()函数不是一个真正意义上的函数,所以你没有必要一定去使用它。如果你想把多于一个的参数传递给echo()函数,那么使用圆括号“()”将产生错误。
Tip: The echo() function is slightly faster than print().
提示:echo()函数相当于print()函数的简化版本。
Tip: The echo() function has the following shortcut syntax. See example 5.
提示:echo()函数包含下面的简便写法。具体见:案例5。
Example 1
案例1
<?php 
$str = "Who's Kai Jim?"; 
echo $str; 
echo "<br />"; 
echo $str."<br />I don't know!"; 
?>

The output of the code above will be:
上述代码将输出下面的结果:
Who's Kai Jim?Who's Kai Jim?I don't know!

Example 2
案例2

<?php 
echo "This textspans multiplelines."; 
?>

The output of the code above will be:
上述代码将输出下面的结果:
This text spans multiple lines.

Example 3
案例3

<?php 
echo 'This ','string ','was ','made ','with multiple parameters'; 
?>

The output of the code above will be:
上述代码将输出下面的结果:
This string was made with multiple parameters

Example 4
案例4
Difference of single and double quotes. Single quotes will print the variable name, not the value:
区别单引号(')和双引号(”)的不同。单引号将输出变量名,而不是变量的值:

<?php 
$color = "red"; 
echo "Roses are $color"; 
echo "<br />"; 
echo 'Roses are $color'; 
?>

The output of the code above will be:
上述代码将输出下面的结果:
Roses are redRoses are $color

Example 5
案例5
Shortcut syntax:
简写(捷径)语法:

<html><body> 
<?php 
$color = "red"; 
?><p>Roses are <?=$color?></p></body></html>

PHP 相关文章推荐
浅析PHP水印技术
Feb 14 PHP
轻松修复Discuz!数据库
May 03 PHP
phpmyadmin导入(import)文件限制的解决办法
Dec 11 PHP
php中使用DOM类读取XML文件的实现代码
Dec 14 PHP
详解PHP中instanceof关键字及instanceof关键字有什么作用
Nov 05 PHP
在php中设置session用memcache来存储的方法总结
Jan 14 PHP
浅析php-fpm静态和动态执行方式的比较
Nov 09 PHP
详解如何在云服务器上部署Laravel
Jun 30 PHP
Laravel框架中Blade模板的用法示例
Aug 30 PHP
php实现构建排除当前元素的乘积数组方法
Oct 06 PHP
php正则表达式使用方法整理集合
Jan 31 PHP
PHP7 新增常量
Mar 09 PHP
php 图片加水印与上传图片加水印php类
May 12 #PHP
php access 数据连接与读取保存编辑数据的实现代码
May 12 #PHP
简单PHP上传图片、删除图片实现代码
May 12 #PHP
php 删除记录同时删除图片文件的实现代码
May 12 #PHP
Godaddy空间Zend Optimizer升级方法
May 10 #PHP
AMFPHP php远程调用(RPC, Remote Procedure Call)工具 快速入门教程
May 10 #PHP
PHP chmod 函数与批量修改文件目录权限
May 10 #PHP
You might like
phpmyadmin导入(import)文件限制的解决办法
2009/12/11 PHP
php函数间的参数传递(值传递/引用传递)
2013/09/23 PHP
php中的filesystem文件系统函数介绍及使用示例
2014/02/13 PHP
ThinkPHP中关联查询实例
2014/12/02 PHP
php微信支付之APP支付方法
2015/03/04 PHP
PHP+Oracle本地开发环境搭建方法详解
2019/04/01 PHP
从Ajax到JQuery Ajax学习
2007/02/14 Javascript
JavaScript 实现简单的倒计时弹窗DEMO附图
2014/03/05 Javascript
使用js实现的简单拖拽效果
2015/03/18 Javascript
jQuery实现带有动画效果的回到顶部和底部代码
2015/11/04 Javascript
自定义类似于jQuery UI Selectable 的Vue指令v-selectable
2017/08/23 jQuery
bootstrap table支持高度百分比的实例代码
2018/02/28 Javascript
JavaScript 事件代理需要注意的地方
2020/09/08 Javascript
vant自定义二级菜单操作
2020/11/02 Javascript
Python中实现参数类型检查的简单方法
2015/04/21 Python
tensorflow 获取模型所有参数总和数量的方法
2018/06/14 Python
Django 多语言教程的实现(i18n)
2018/07/07 Python
python 函数中的内置函数及用法详解
2019/07/02 Python
python常用函数与用法示例
2019/07/02 Python
python 将字符串中的数字相加求和的实现
2019/07/18 Python
Django admin禁用编辑链接和添加删除操作详解
2019/11/15 Python
Django ORM filter() 的运用详解
2020/05/14 Python
Python 如何实现访问者模式
2020/07/28 Python
Python如何实现机器人聊天
2020/09/10 Python
求职信内容考虑哪几点
2013/10/05 职场文书
科室工作个人总结的自我评价
2013/10/29 职场文书
专科文秘应届生求职信
2013/11/18 职场文书
幼教毕业生自我鉴定
2014/01/12 职场文书
如何打造一封优秀的留学推荐信
2014/01/25 职场文书
铁路个人事迹材料
2014/01/30 职场文书
同学会主持词
2014/03/18 职场文书
政府绩效管理实施方案
2014/05/04 职场文书
中华在我心中演讲稿
2014/09/13 职场文书
不尊敬老师检讨书范文
2014/11/19 职场文书
2015年大学学生会工作总结
2015/05/13 职场文书
Springboot-cli 开发脚手架,权限认证,附demo演示
2022/04/28 Java/Android