update : 2015.11.03
php.shukuma.com

검색:
 
 
Search a string for any of a set of characters

strpbrk

(PHP 5)

strpbrkSearch a string for any of a set of characters

설명

string strpbrk ( string $haystack , string $char_list )

strpbrk() searches the haystack string for a char_list.

인수

haystack

The string where char_list is looked for.

char_list

This parameter is case sensitive.

반환값

Returns a string starting from the character found, or FALSE if it is not found.

예제

Example #1 strpbrk() example

<?php

$text 
'This is a Simple text.';

// this echoes "is is a Simple text." because 'i' is matched first
echo strpbrk($text'mi');

// this echoes "Simple text." because chars are case sensitive
echo strpbrk($text'S');
?>

참고

  • strpos() - 문자열이 처음 나타나는 위치를 찾습니다
  • strstr() - 문자열이 처음으로 나오는 부분을 찾습니다
  • preg_match() - 정규표현식 매치를 수행