我如何修剪空白?我已经尝试过trim()但它没有用。这个锚标记数据来自数据库(数据库表中没有空格)
答案 0 :(得分:0)
试试这个,
trim(preg_replace('/\t+/', '', $string));
答案 1 :(得分:0)
使用此功能:
function remove_internal_whitespace($string)
{
$string = preg_replace('/\s+/', ' ', $string);
$string = trim($string);
return $string;
}
用法:
echo remove_internal_whitespace(your html string here);