helly           Sat Nov  4 20:12:27 2006 UTC

  Modified files:              
    /php-src/ext/spl    php_spl.c 
  Log:
  - Mark some funcs as unicode ready
  
http://cvs.php.net/viewvc.cgi/php-src/ext/spl/php_spl.c?r1=1.97&r2=1.98&diff_format=u
Index: php-src/ext/spl/php_spl.c
diff -u php-src/ext/spl/php_spl.c:1.97 php-src/ext/spl/php_spl.c:1.98
--- php-src/ext/spl/php_spl.c:1.97      Tue Oct 31 23:18:00 2006
+++ php-src/ext/spl/php_spl.c   Sat Nov  4 20:12:26 2006
@@ -16,7 +16,7 @@
    +----------------------------------------------------------------------+
  */
 
-/* $Id: php_spl.c,v 1.97 2006/10/31 23:18:00 helly Exp $ */
+/* $Id: php_spl.c,v 1.98 2006/11/04 20:12:26 helly Exp $ */
 
 #ifdef HAVE_CONFIG_H
        #include "config.h"
@@ -83,7 +83,7 @@
        return *ce;
 }
 
-/* {{{ proto array class_parents(object instance)
+/* {{{ proto array class_parents(object instance) U
  Return an array containing the names of all parent classes */
 PHP_FUNCTION(class_parents)
 {
@@ -117,7 +117,7 @@
 }
 /* }}} */
 
-/* {{{ proto array class_implements(mixed what [, bool autoload ])
+/* {{{ proto array class_implements(mixed what [, bool autoload ]) U
  Return all classes and interfaces implemented by SPL */
 PHP_FUNCTION(class_implements)
 {
@@ -194,7 +194,7 @@
        SPL_ADD_CLASS(UnderflowException, z_list, sub, allow, ce_flags); \
        SPL_ADD_CLASS(UnexpectedValueException, z_list, sub, allow, ce_flags); \
 
-/* {{{ proto array spl_classes()
+/* {{{ proto array spl_classes() U
  Return an array containing the names of all clsses and interfaces defined in 
SPL */
 PHP_FUNCTION(spl_classes)
 {
@@ -388,7 +388,7 @@
        }
 } /* }}} */
 
-/* {{{ proto bool spl_autoload_register([mixed autoload_function = 
"spl_autoload" [, throw = true]])
+/* {{{ proto bool spl_autoload_register([mixed autoload_function = 
"spl_autoload" [, throw = true]]) U
  Register given function as __autoload() implementation */
 PHP_FUNCTION(spl_autoload_register)
 {
@@ -493,7 +493,7 @@
        RETURN_TRUE;
 } /* }}} */
 
-/* {{{ proto bool spl_autoload_unregister(mixed autoload_function)
+/* {{{ proto bool spl_autoload_unregister(mixed autoload_function) U
  Unregister given function as __autoload() implementation */
 PHP_FUNCTION(spl_autoload_unregister)
 {
@@ -544,7 +544,7 @@
        RETURN_BOOL(success == SUCCESS);
 } /* }}} */
 
-/* {{{ proto false|array spl_autoload_functions()
+/* {{{ proto false|array spl_autoload_functions() U
  Return all registered __autoload() functionns */
 PHP_FUNCTION(spl_autoload_functions)
 {
@@ -587,7 +587,7 @@
        add_next_index_text(return_value, 
EG(autoload_func)->common.function_name, 1);
 } /* }}} */
 
-/* {{{ proto string spl_object_hash(object obj)
+/* {{{ proto string spl_object_hash(object obj) U
  Return hash id for given object */
 PHP_FUNCTION(spl_object_hash)
 {

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

Reply via email to