如何断开PHP连接的界线?

时间:2019-04-06 14:27:11

标签: php

是否可以在下面的代码中将该行换行

$data['snippets_html']=  $bootstrap_css.''.$bootstrap_js.''.$jquery_js.''.$ContentDecodedHTML;

我尝试过

$data['snippets_html']=  $bootstrap_css.'<br>'.$bootstrap_js.'<br>'.$jquery_js.'<br>'.$ContentDecodedHTML;

1 个答案:

答案 0 :(得分:1)

您可以使用PHP_EOL添加换行符并将其解释为跨平台(Windows / Linux)。

$data['snippets_html'] =  $bootstrap_css . PHP_EOL . $bootstrap_js . PHP_EOL . $jquery_js . PHP_EOL . $ContentDecodedHTML;

Working Link