Display the drop-down list

strpbrk()

« strncmp | strpos »
<?php
$string 
strpbrk (
    
// string $haystack
    
  // string $char_list
);
?>
Result
$string = 'Simple text.'
Examples
#1 strpbrk  ("This is a Simple text.",
 
"mi")
#2 strpbrk  ("This is a Simple text.",
 
"S")
See also
preg_match, strpos, strstr