你的代码不清楚。但是,据我了解,您正在寻求此解决方案。您想要从文本中删除空格。$var = "Hello World!"; //var with spaces$removespacefromvar = preg_replace('/\s+/', '', $var); //This code gonna remove the white space from $var ?><div><?= $removespacefromvar ?></div><?php //This will output the final text where we have removed space 该<?=图标是一个简短的 php 标签。