Advertisement
Guest User

Untitled

a guest
Jul 22nd, 2017
54
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.13 KB | None | 0 0
  1. <?php
  2. $string = "aaab bb";
  3. $exploded = explode(" ", $string);
  4. if (count($exploded) > 1)
  5. {
  6.         echo 'Multiple Words';
  7. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement