You are here : phpstringstrpbrk

strpbrk() - string

strpbrk() searches the haystack
   string for a char_list.
Parameters :
  • haystack - The string where char_list is looked for.
  • char_list - This parameter is case sensitive.

  • Syntax

    string strpbrk
        ( string $haystack
       , string $char_list
       )


    Example

    <?php$text = 'This is a Simple text.';// this echoes "is is a Simple text." because 'i' is matched firstecho strpbrk($text, 'mi');// this echoes "Simple text." because chars are case sensitiveecho strpbrk($text, 'S');?>


    Output / Return Value


    Limitations


    Alternatives / See Also


    Reference