|
użytkowników online: 63
|
OPINIE UŻYTKOWNIKÓW
|
Nie jestem webmasterem, ale i na mnie zrobiła wrażenie szybkość reakcji Darka na mój problem. Jego kompetencja i przede wszystkim zupełnie niemodna w dzisiejszych skomercjalizowanych czasach - zwykła ludzka życzliwość dla innego człowieka. Tacy ludzie to dziś gatunek niemal wymarły...
Leszek
Wojskowy Instytut Medyczny
|
|
PODRĘCZNIK PHP 5.x, 4.x, 3.x - częściowo spolszczony / źródło: www.php.net
[Spis]
[A]
[B]
[C]
[D]
[E]
[F]
[G]
[H]
[I]
[J]
[K]
[L]
[M]
[N]
[O]
[P]
[Q]
[R]
[S]
[T]
[U]
[V]
[X]
[W]
[Z]
strpbrk (PHP 5) strpbrk --
Search a string for any of a set of characters
Descriptionstring strpbrk ( string haystack, string char_list )
strpbrk() searches the haystack
string for a char_list, and returns a string
starting from the character found (or FALSE if it is not found).
Notatka:
The char_list parameter is case sensitive.
Przykład 1. strpbrk() example |
<?php
$text = 'This is a Simple text.';
echo strpbrk($text, 'mi');
echo strpbrk($text, 'S');
?>
|
|
User Contributed Notesaidan at php dot net
21-Aug-2004 10:11
This functionality is now implemented in the PEAR package PHP_Compat.
More information about using this function without upgrading your version of PHP can be found on the below link:
http://pear.php.net/package/PHP_Compat
|