summaryrefslogtreecommitdiff
path: root/ext/standard
diff options
context:
space:
mode:
Diffstat (limited to 'ext/standard')
-rw-r--r--ext/standard/basic_functions.c2
-rw-r--r--ext/standard/php_string.h2
2 files changed, 4 insertions, 0 deletions
diff --git a/ext/standard/basic_functions.c b/ext/standard/basic_functions.c
index 99aee756f9..3681253e02 100644
--- a/ext/standard/basic_functions.c
+++ b/ext/standard/basic_functions.c
@@ -325,7 +325,9 @@ function_entry basic_functions[] = {
PHP_FE(strtoupper, NULL)
PHP_FE(strtolower, NULL)
PHP_FE(strpos, NULL)
+ PHP_FE(stripos, NULL)
PHP_FE(strrpos, NULL)
+ PHP_FE(strripos, NULL)
PHP_FE(strrev, NULL)
PHP_FE(hebrev, NULL)
PHP_FE(hebrevc, NULL)
diff --git a/ext/standard/php_string.h b/ext/standard/php_string.h
index 5f07c31ea3..5b18cb7875 100644
--- a/ext/standard/php_string.h
+++ b/ext/standard/php_string.h
@@ -45,7 +45,9 @@ PHP_FUNCTION(dirname);
PHP_FUNCTION(pathinfo);
PHP_FUNCTION(strstr);
PHP_FUNCTION(strpos);
+PHP_FUNCTION(stripos);
PHP_FUNCTION(strrpos);
+PHP_FUNCTION(strripos);
PHP_FUNCTION(strrchr);
PHP_FUNCTION(substr);
PHP_FUNCTION(quotemeta);