Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一个 html 模板作为 php 字符串。为防止输出,应删除 html 开头或 doctype 定义之前的所有空白字符和换行符。使用 PHP 执行此操作的最简单和最快的方法是什么?
如果我将您的问题简单地解释为“如何从字符串的开头删除空格”,那么答案很简单:
$str = trim($str);
如果您使用某种 MVC 框架,您会在视图中找到输出方法并修剪字符串。