11/06/2016

PHP : PHP ค้นหาตัวหนังสือว่ามีใน String หรือไม่

PHP : PHP ค้นหาตัวหนังสือว่ามีใน String หรือไม่

  1. $a = 'How are you?';
  2.  
  3. if (strpos($a, 'are') !== false) {
  4.     echo 'true';
  5. }


http://stackoverflow.com/questions/4366730/check-if-string-contains-specific-words

No comments:

Post a Comment