是否可以在下面的代码中将该行换行
$data['snippets_html']= $bootstrap_css.''.$bootstrap_js.''.$jquery_js.''.$ContentDecodedHTML;
我尝试过
$data['snippets_html']= $bootstrap_css.'<br>'.$bootstrap_js.'<br>'.$jquery_js.'<br>'.$ContentDecodedHTML;
答案 0 :(得分:1)
您可以使用PHP_EOL添加换行符并将其解释为跨平台(Windows / Linux)。
$data['snippets_html'] = $bootstrap_css . PHP_EOL . $bootstrap_js . PHP_EOL . $jquery_js . PHP_EOL . $ContentDecodedHTML;