@@ -81,7 +81,7 @@ static zend_class_entry * spl_find_ce_by_name(zend_uchar ztype, void *name, int
81
81
return * ce ;
82
82
}
83
83
84
- /* {{{ array class_parents(object instance)
84
+ /* {{{ proto array class_parents(object instance)
85
85
Return an array containing the names of all parent classes */
86
86
PHP_FUNCTION (class_parents )
87
87
{
@@ -246,7 +246,7 @@ int spl_autoload(const char *class_name, const char * lc_name, int class_name_le
246
246
return 0 ;
247
247
} /* }}} */
248
248
249
- /* {{{ void spl_autoload(string class_name [, string file_extensions])
249
+ /* {{{ proto void spl_autoload(string class_name [, string file_extensions])
250
250
Default implementation for __autoload() */
251
251
PHP_FUNCTION (spl_autoload )
252
252
{
@@ -302,7 +302,7 @@ PHP_FUNCTION(spl_autoload)
302
302
}
303
303
} /* }}} */
304
304
305
- /* {{{ void string spl_autoload_extensions([string file_extensions])
305
+ /* {{{ proto void string spl_autoload_extensions([string file_extensions])
306
306
Register and return default file extensions for spl_autoload */
307
307
PHP_FUNCTION (spl_autoload_extensions )
308
308
{
@@ -336,7 +336,7 @@ static void autoload_func_info_dtor(autoload_func_info *alfi)
336
336
}
337
337
}
338
338
339
- /* {{{ void spl_autoload_call(string class_name)
339
+ /* {{{ proto void spl_autoload_call(string class_name)
340
340
Try all registerd autoload function to load the requested class */
341
341
PHP_FUNCTION (spl_autoload_call )
342
342
{
@@ -374,7 +374,7 @@ PHP_FUNCTION(spl_autoload_call)
374
374
}
375
375
} /* }}} */
376
376
377
- /* {{{ void spl_autoload_register([string autoload_function = "spl_autoload" [, throw = true]])
377
+ /* {{{ proto void spl_autoload_register([string autoload_function = "spl_autoload" [, throw = true]])
378
378
Register given function as __autoload() implementation */
379
379
PHP_FUNCTION (spl_autoload_register )
380
380
{
@@ -479,7 +479,7 @@ PHP_FUNCTION(spl_autoload_register)
479
479
}
480
480
} /* }}} */
481
481
482
- /* {{{ bool spl_autoload_unregister(string autoload_function)
482
+ /* {{{ proto bool spl_autoload_unregister(string autoload_function)
483
483
Unregister given function as __autoload() implementation */
484
484
PHP_FUNCTION (spl_autoload_unregister )
485
485
{
@@ -523,7 +523,7 @@ PHP_FUNCTION(spl_autoload_unregister)
523
523
RETURN_BOOL (success == SUCCESS );
524
524
} /* }}} */
525
525
526
- /* {{{ false|array spl_autoload_functions()
526
+ /* {{{ proto false|array spl_autoload_functions()
527
527
Return all registered __autoload() functionns */
528
528
PHP_FUNCTION (spl_autoload_functions )
529
529
{
0 commit comments