diff options
author | Andrei Zmievski <andrei@php.net> | 2000-04-26 00:29:59 +0000 |
---|---|---|
committer | Andrei Zmievski <andrei@php.net> | 2000-04-26 00:29:59 +0000 |
commit | 5c5ec8829229f89a31a68adbd8e8a44d144a09b2 (patch) | |
tree | 5f040d8d3bc171845422b468347e40b09a69161d /ext/standard/php_string.h | |
parent | 94a724f68625c7b4c1cc83e9b6fdf98060eace34 (diff) | |
download | php-git-5c5ec8829229f89a31a68adbd8e8a44d144a09b2.tar.gz |
@Added substr_count() from Peter Kovacs. (Andrei)
# also some todo stuff
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 81d703553d..9e31cb3cd9 100644 --- a/ext/standard/php_string.h +++ b/ext/standard/php_string.h @@ -84,6 +84,7 @@ PHP_FUNCTION(str_repeat); PHP_FUNCTION(substr_replace); PHP_FUNCTION(strnatcmp); PHP_FUNCTION(strnatcasecmp); +PHP_FUNCTION(substr_count); #define strnatcmp(a, b) \ strnatcmp_ex(a, strlen(a), b, strlen(b), 0) |