Filter all types of whitespace in PHP

前端 未结 3 1308
盖世英雄少女心
盖世英雄少女心 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条回答
  •  囚心锁ツ
    2020-12-19 13:10

    They are all plain spaces (returning character code 32) that can be caught with regular expressions or trim().

    Try this:

    preg_replace("/\s{2,}/", " ", $text);
    

提交回复
热议问题