iliaa           Tue Jan 28 19:07:02 2003 EDT

  Modified files:              
    /php4/ext/standard  php_string.h basic_functions.c 
  Log:
  Added part of strpos commit that never made it in for some reason.
  
  # Thanks Pollita.
  
  
Index: php4/ext/standard/php_string.h
diff -u php4/ext/standard/php_string.h:1.67 php4/ext/standard/php_string.h:1.68
--- php4/ext/standard/php_string.h:1.67 Wed Jan  1 06:04:44 2003
+++ php4/ext/standard/php_string.h      Tue Jan 28 19:07:01 2003
@@ -17,7 +17,7 @@
    +----------------------------------------------------------------------+
 */
 
-/* $Id: php_string.h,v 1.67 2003/01/01 11:04:44 wez Exp $ */
+/* $Id: php_string.h,v 1.68 2003/01/29 00:07:01 iliaa Exp $ */
 
 /* Synced with php 3.0 revision 1.43 1999-06-16 [ssb] */
 
@@ -45,7 +45,9 @@
 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);
Index: php4/ext/standard/basic_functions.c
diff -u php4/ext/standard/basic_functions.c:1.566 
php4/ext/standard/basic_functions.c:1.567
--- php4/ext/standard/basic_functions.c:1.566   Mon Jan 27 20:48:57 2003
+++ php4/ext/standard/basic_functions.c Tue Jan 28 19:07:01 2003
@@ -17,7 +17,7 @@
    +----------------------------------------------------------------------+
  */
 
-/* $Id: basic_functions.c,v 1.566 2003/01/28 01:48:57 iliaa Exp $ */
+/* $Id: basic_functions.c,v 1.567 2003/01/29 00:07:01 iliaa Exp $ */
 
 #include "php.h"
 #include "php_streams.h"
@@ -325,7 +325,9 @@
        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)



-- 
PHP CVS Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to