gpt4 book ai didi

php - Codeigniter - 从我渲染的 View 中删除空行

转载 作者:行者123 更新时间:2023-11-28 00:23:07 25 4
gpt4 key购买 nike

我在 View 中有以下代码:

<div>
<p>Some text here</p>
<?= $content ?>
<p>..another paragraph here</p>
</div>

现在如果 $content 变量是一个空字符串,我得到:

<div>
<p>Some text here</p>

<p>..another paragraph here</p>
</div>

我需要做什么来防止这个空行被添加到我的 HTML 中?

我正在寻找一种解决方案,既可以在我的 View 文件中,也可以在呈现给浏览器的 HTML 中保留我的代码格式。

最佳答案

在新行之前打开和关闭 PHP 标记,以便空白在 PHP 的范围内,因此被忽略并且不会输出到浏览器。

<p>Some text here</p><?php 
echo $content;
?><p>..another paragraph here</p>

关于php - Codeigniter - 从我渲染的 View 中删除空行,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7645186/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com