From 627cff89cd6378d549cdc03402d37fb1a5ba9b11 Mon Sep 17 00:00:00 2001 From: Nuno Lopes Date: Tue, 6 Jul 2004 12:32:39 +0000 Subject: [PATCH] adding documentation and examples for strpbrk git-svn-id: https://svn.php.net/repository/phpdoc/en/trunk@162746 c90b9560-bf6c-de11-be94-00142212c4b1 --- reference/strings/functions/strpbrk.xml | 32 ++++++++++++++++++++++--- 1 file changed, 29 insertions(+), 3 deletions(-) diff --git a/reference/strings/functions/strpbrk.xml b/reference/strings/functions/strpbrk.xml index 3d0737372f..9ec4e8aa7f 100755 --- a/reference/strings/functions/strpbrk.xml +++ b/reference/strings/functions/strpbrk.xml @@ -1,5 +1,5 @@ - + strpbrk @@ -10,13 +10,39 @@ Description - arraystrpbrk + stringstrpbrk stringhaystack stringchar_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). + + + + The char_list parameter is case sensitive. + + + + + <function>strpbrk</function> example + + +]]> + + +