Filter all types of whitespace in PHP

前端 未结 3 1327
盖世英雄少女心
盖世英雄少女心 2020-12-19 12:27

I know that there are many types of space (em space, en space, thin space, non-breaking space, etc), but, all these, that I refered, have HTML entities (at least, PHP\'s htm

3条回答
  •  萌比男神i
    2020-12-19 12:58

    $result = preg_replace('/\s/', '', $yourString)
    

    See http://www.php.net/manual/en/regexp.reference.backslash.php for more infos on the \s

提交回复
热议问题