mirror of
https://github.com/php/php-src.git
synced 2025-08-15 21:48:51 +02:00
Export php_session_start().
This commit is contained in:
parent
53cfce6bc5
commit
86f123ba2e
2 changed files with 2 additions and 1 deletions
|
@ -160,6 +160,7 @@ PHPAPI int php_session_register_serializer(const char *name,
|
|||
int (*decode)(PS_SERIALIZER_DECODE_ARGS));
|
||||
|
||||
PHPAPI void php_session_set_id(char *id TSRMLS_DC);
|
||||
PHPAPI void php_session_start(TSRMLS_D);
|
||||
|
||||
#define PS_ADD_VARL(name,namelen) \
|
||||
zend_hash_add_empty_element(&PS(vars), name, namelen + 1)
|
||||
|
|
|
@ -825,7 +825,7 @@ static const ps_serializer *_php_find_ps_serializer(char *name TSRMLS_DC)
|
|||
convert_to_string((*ppid)); \
|
||||
PS(id) = estrndup(Z_STRVAL_PP(ppid), Z_STRLEN_PP(ppid))
|
||||
|
||||
static void php_session_start(TSRMLS_D)
|
||||
PHPAPI void php_session_start(TSRMLS_D)
|
||||
{
|
||||
pval **ppid;
|
||||
pval **data;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue