strip
(n12br) 从数据库字段获取

发布于 2024-11-10 08:03:06 字数 449 浏览 3 评论 0原文

我有一个文本区域值,其值源自字段(nl2br)

如何去掉“< br/>”,这样当我想编辑此字段时,“< br />”不会出现吗?

//$data["Content"] is the field that has <br/> tags inside
$content = $data["Content"];

//when want to edit, want to strip the <br/> tag
<td><textarea name="content" rows="10" style="width:300px;"><?=$content?></textarea></td>

我知道它应该使用 strip_tags() 函数,但不确定真正的方法,

任何帮助将不胜感激

i have a textarea value which its value derived from a field(nl2br)

how to strip off "< br/>", so that when i want to edit this field, the "< br />" will not be appeared?

//$data["Content"] is the field that has <br/> tags inside
$content = $data["Content"];

//when want to edit, want to strip the <br/> tag
<td><textarea name="content" rows="10" style="width:300px;"><?=$content?></textarea></td>

i know it should be using strip_tags() function but not sure the real way to do it

any help would be appreciated

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

落日海湾 2024-11-17 08:03:06

如果你想使用 strip_tags,那么它就是:

$content = strip_tags($data["Content"]);

If you wanna use strip_tags, then it would just be:

$content = strip_tags($data["Content"]);
私野 2024-11-17 08:03:06

我将使用 str_replace 以下内容将替换
带有换行符

$content = str_replace('<br/>','\n',$data['Content']);

,或者如果您不需要换行符

$content = str_replace('<br/>','',$data['Content']);

编辑
一个例子

$my_br = 'hello<br/> world';
$content = str_replace('<br/>','',$my_br);

echo $content;

Output: hello world

i would be using str_replace the following will replace <br/> with newline

$content = str_replace('<br/>','\n',$data['Content']);

or if you don't want the newline

$content = str_replace('<br/>','',$data['Content']);

edit
an example

$my_br = 'hello<br/> world';
$content = str_replace('<br/>','',$my_br);

echo $content;

Output: hello world
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文