}
/* }}} */
-/* {{{ proto array session_get_cookie_params()
+/* {{{ proto array session_get_cookie_params(void)
Return the session cookie parameters */
PHP_FUNCTION(session_get_cookie_params)
{
/* }}} */
/* {{{ proto string session_name([string newname])
- Return the current session name. if newname is given, the session name is replaced with newname */
+ Return the current session name. If newname is given, the session name is replaced with newname */
PHP_FUNCTION(session_name)
{
pval **p_name;
/* }}} */
/* {{{ proto string session_module_name([string newname])
- Return the current module name used for accessing session data. if newname is given, the module name is replaced with newname */
+ Return the current module name used for accessing session data. If newname is given, the module name is replaced with newname */
PHP_FUNCTION(session_module_name)
{
pval **p_name;
/* }}} */
/* {{{ proto string session_save_path([string newname])
- Return the current save path passed to module_name. if newname is given, the save path is replaced with newname */
+ Return the current save path passed to module_name. If newname is given, the save path is replaced with newname */
PHP_FUNCTION(session_save_path)
{
pval **p_name;
/* }}} */
/* {{{ proto string session_id([string newid])
- Return the current session id. if newid is given, the session id is replaced with newid */
+ Return the current session id. If newid is given, the session id is replaced with newid */
PHP_FUNCTION(session_id)
{
pval **p_name;
/* }}} */
-/* {{{ proto bool session_register(mixed var_names [, ...])
+/* {{{ proto bool session_register(mixed var_names [, mixed ...])
Adds varname(s) to the list of variables which are freezed at the session end */
PHP_FUNCTION(session_register)
{