fork download
  1. <?php
  2.  
  3. $str = '   ';
  4.  
  5. if (preg_match_all('/\s{2,}/u', $str, $matches)) {
  6. var_dump($matches);
  7. }
  8.  
Success #stdin #stdout 0.02s 52480KB
stdin
Standard input is empty
stdout
array(1) {
  [0]=>
  array(1) {
    [0]=>
    string(4) "   "
  }
}