替换 用空格或空字符串PHP

好吧,我已经尝试了这些,似乎它们都没有工作,我的示例字符串是

 $text_description="       Hello World! lorel ipsum";

 $text_description= str_replace(" "," ",$text_description);
 $text_description = preg_replace("/&#?[a-z0-9]+;/i"," ",$text_description);
 $text_description=html_entity_decode($text_description);

解决方法:

$text_description="       Hello World! lorel ipsum";
$text_description = str_replace(' ', ' ', $text_description);
echo $text_description;

输出

Hello World! lorel ipsum

相关文章

统一支付是JSAPI/NATIVE/APP各种支付场景下生成支付订单,返...
统一支付是JSAPI/NATIVE/APP各种支付场景下生成支付订单,返...
前言 之前做了微信登录,所以总结一下微信授权登录并获取用户...
FastAdmin是我第一个接触的后台管理系统框架。FastAdmin是一...
之前公司需要一个内部的通讯软件,就叫我做一个。通讯软件嘛...
统一支付是JSAPI/NATIVE/APP各种支付场景下生成支付订单,返...