Home > php教程 > php手册 > php cli换行示例

php cli换行示例

WBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWB
Release: 2016-06-06 20:23:09
Original
1449 people have browsed it

这篇文章主要介绍了php cli换行示例,需要的朋友可以参考下

现有1.php内容如下:

复制代码 代码如下:


echo 'hi\nhi';

在命令行中执行该文件:

复制代码 代码如下:


bash >> php 1.php
hi\nhi

这其中无法换行的原因很简单,把单引号换为双引号即可。

复制代码 代码如下:


echo "hi\nhi";

在命令行中执行该文件:

复制代码 代码如下:


bash >> php 1.php
hi
hi

Related labels:
php
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Latest Issues
php data acquisition?
From 1970-01-01 08:00:00
0
0
0
PHP extension intl
From 1970-01-01 08:00:00
0
0
0
How to learn php well
From 1970-01-01 08:00:00
0
0
0
Popular Recommendations
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template