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.
我是新来的聪明人。
我想知道如何从 Smarty 中的给定字符串中删除所有空白字符?
我有一个像“这是我的字符串”这样的字符串。输出应该是“thisismystring”。
我怎样才能做到这一点?
从文档中:
{$YourVariable|replace:' ':''}
条带之间的任何内容,所有空格都将被删除。
{strip}{/strip}
您可以使用strip修饰符从变量(字符串)中去除空格,并将空字符串作为参数传递给它:
strip
{$myVar|strip:""}