Strings Php

     $string = "PHP is the web scripting language";
     $pattern = "/PHP/";
   
     if(preg_match($pattern, $string))
          print("Found a match!");
?>