Symfony/propel:propel 模式中文本中的新行,如何?

发布于 2024-09-26 00:33:01 字数 380 浏览 0 评论 0原文

我有这个:

SediI18n:
   XXXXXX:   { id: sede_foo_1, culture: it, paese_indirizzo: it,
ufficio: "Ufficio di XXX 1", indirizzo: "Foo Bar FooBar" }

现在,当我打印此寄存器时,注册字段“indirizzo”:

FooBarFooBar

一切都在一条线上。

有什么方法可以写出“indirizzo”的值直接在我的网页上打印 页面像下面这样?

Foo
Bar
FooBar

哈维

I have this:

SediI18n:
   XXXXXX:   { id: sede_foo_1, culture: it, paese_indirizzo: it,
ufficio: "Ufficio di XXX 1", indirizzo: "Foo Bar FooBar" }

Now, when i prints this register the field "indirizzo":

Foo Bar FooBar

Everything is in one line.

Any way to write the value of "indirizzo" to print directly in my web
page something like this below?

Foo
Bar
FooBar

Javi

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

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

发布评论

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

评论(1

机场等船 2024-10-03 00:33:01

您可以尝试在字符串中嵌入 \n ,然后查看它们是否会进入数据库。您还可以通过以 |块文字 > 字符,它允许您跨越多行,但这可能会破坏生成的插入子句。

然后,要将换行符转换为
标记,请使用 nl2br() 当您显示字符串时,否则 HTML 源中的换行符将被忽略。

You could try embedding \n in your string, and see whether they make it into the database. You could also try block literals by starting the string with a | character, which allows you to span multiple lines, but that might break the generated insert clause.

Then, to convert your newlines to <br/> tags, use nl2br() when you display the string, otherwise the linebreaks in the HTML source will just be ignored.

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