gpt4 book ai didi

php - 在 php 变量中存储换行符

转载 作者:太空狗 更新时间:2023-10-29 15:57:50 24 4
gpt4 key购买 nike

我正在开发一个 Facebook 应用程序,我从数据库中获取一些文本并将其显示在页面上。问题是我想在变量 e-g 中插入一个换行符如果我从数据库复制文本并将其存储在变量中.. 让我们说$text="我喜欢走路";

我想在“to”之后插入一个换行符,我该怎么做?

I had tried to store the text like this in html 
"I love to <html> <br> </html> but that didn't worked..

假设这是文本......下次文本可能完全是没有“to”字的 Differnet。

最佳答案

取决于您是想在代码输出中还是在 HTML 中创建新行

$nl = "\r\n";
$nl_html = "<br />";

你提供的那个例子修改如下:

$lyrics = "I love to <br> but that didn't worked.."

要在某些文本后自动添加换行符,请使用 preg_replace

$lyrics = preg_replace('/to /',"to<br />",$lyrics);

参见 http://php.net/manual/en/function.preg-replace.php

关于php - 在 php 变量中存储换行符,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7459804/

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