php不换行显示,php中\n不换行

本文俺将跟大家介绍两个解决办法。

2629ec01820b11e8d54ca6fc12c22d57.png

原因

PHP中默认输出的文档格式是text/html,在html文件中识别\n为空格。

解决办法

办法一 设置content-type

显示的将content-type设置为text/plain,注:设置后将不能使用html标签。

例:

/**

* 犀牛前端部落

* https://www.pipipi.net/

*/

header("Content-Type:text/plain");

class MyClass{

public function __construct()

{

echo "初始化\n";

}

public function __destruct()

{

echo "销毁\n";

}

}

$my = new MyClass;

?>

办法二 改变\n

我们也可以将\n设置为html文件可以识别的
换行符。

/**

* 犀牛前端部落

* https://www.pipipi.net/

*/

class MyClass{

public function __construct()

{

echo "初始化
";

}

public function __destruct()

{

echo "销毁";

}

}

$my = new MyClass;

?>

原创文章,作者:犀牛前端部落,如若转载,请注明出处:https://www.pipipi.net/3125.html

你可能感兴趣的:(php不换行显示)