Rev 22 | Rev 24 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed
Rev 22 | Rev 23 | ||
---|---|---|---|
Line 468... | Line 468... | ||
468 | function reduceWhitespace($s) |
468 | function reduceWhitespace($s) |
469 | { |
469 | { |
470 | return preg_replace('/\s{2,}/', ' ', $s); |
470 | return preg_replace('/\s{2,}/', ' ', $s); |
471 | } |
471 | } |
472 | 472 | ||
473 | ?> |
- | |
474 | 473 | function debug($x) |
|
- | 474 | { |
|
- | 475 | echo '<pre>'; var_dump($x); echo '</pre>'; |
|
- | 476 | } |
|
- | 477 | ||
475 | 478 |