在打开标签之前删除空白输出以防止“怪癖”模式

发布于 2024-08-31 17:24:26 字数 100 浏览 10 评论 0原文

我有一个 html 模板作为 php 字符串。为了防止输出,应删除 html 开头或 doctype 定义之前的所有空白字符和换行符。 使用 PHP 实现此目的最简单、最快的方法是什么?

I have a html template as a php string. To prevent output, all blank characters and line breaks before the html opening or doctype definition should be removed.
What is the simplest and fastest way to do this with PHP?

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

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

发布评论

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

评论(2

云裳 2024-09-07 17:24:26

如果我将您的问题简单地解释为“如何从字符串开头删除空格”,那么答案很简单:

$str = trim($str);

If I interpret your question as simply, "How do I remove whitespace from the beginning of a string", the answer is simply:

$str = trim($str);
只有一腔孤勇 2024-09-07 17:24:26

如果您使用某种 MVC 框架,您会在视图中找到输出方法并修剪字符串。

If you are using some kind of MVC framework, you would find the output method in the view and trim the string.

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