diff options
author | Ilia Alshanetsky <iliaa@php.net> | 2003-02-11 22:47:26 +0000 |
---|---|---|
committer | Ilia Alshanetsky <iliaa@php.net> | 2003-02-11 22:47:26 +0000 |
commit | 53f96c8b02690d2183e72a76a547cb8b08aacdf2 (patch) | |
tree | bb2af0e9fd527279b4546df6c79ca63d00ee511f /ext/standard/php_string.h | |
parent | a0873a8f7dac210d431dbb3d80670124f4e1f3c3 (diff) | |
download | php-git-53f96c8b02690d2183e72a76a547cb8b08aacdf2.tar.gz |
Added strpbrk(), which is essentially a wrapper around C's strpbrk function
that allows searching through a string for a character list.
Diffstat (limited to 'ext/standard/php_string.h')
-rw-r--r-- | ext/standard/php_string.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/ext/standard/php_string.h b/ext/standard/php_string.h index 60a6c23af2..18e53afe27 100644 --- a/ext/standard/php_string.h +++ b/ext/standard/php_string.h @@ -88,6 +88,7 @@ PHP_FUNCTION(sscanf); PHP_FUNCTION(str_shuffle); PHP_FUNCTION(str_word_count); PHP_FUNCTION(str_split); +PHP_FUNCTION(strpbrk); #ifdef HAVE_STRCOLL PHP_FUNCTION(strcoll); #endif |