Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
Y
yii2
Project
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Commits
Issue Boards
Open sidebar
Rotua Panjaitan
yii2
Commits
5d6c9a4c
Commit
5d6c9a4c
authored
Mar 27, 2013
by
Qiang Xue
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fixed session bug.
parent
c03a3ff8
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
26 additions
and
18 deletions
+26
-18
Session.php
framework/web/Session.php
+26
-18
No files found.
framework/web/Session.php
View file @
5d6c9a4c
...
...
@@ -84,6 +84,8 @@ class Session extends Component implements \IteratorAggregate, \ArrayAccess, \Co
return
false
;
}
private
$_opened
=
false
;
/**
* Starts the session.
*/
...
...
@@ -92,29 +94,34 @@ class Session extends Component implements \IteratorAggregate, \ArrayAccess, \Co
// this is available in PHP 5.4.0+
if
(
function_exists
(
'session_status'
))
{
if
(
session_status
()
==
PHP_SESSION_ACTIVE
)
{
$this
->
_opened
=
true
;
return
;
}
}
if
(
$this
->
getUseCustomStorage
())
{
@
session_set_save_handler
(
array
(
$this
,
'openSession'
),
array
(
$this
,
'closeSession'
),
array
(
$this
,
'readSession'
),
array
(
$this
,
'writeSession'
),
array
(
$this
,
'destroySession'
),
array
(
$this
,
'gcSession'
)
);
}
if
(
!
$this
->
_opened
)
{
if
(
$this
->
getUseCustomStorage
())
{
@
session_set_save_handler
(
array
(
$this
,
'openSession'
),
array
(
$this
,
'closeSession'
),
array
(
$this
,
'readSession'
),
array
(
$this
,
'writeSession'
),
array
(
$this
,
'destroySession'
),
array
(
$this
,
'gcSession'
)
);
}
@
session_start
();
@
session_start
();
if
(
session_id
()
==
''
)
{
$error
=
error_get_last
();
$message
=
isset
(
$error
[
'message'
])
?
$error
[
'message'
]
:
'Failed to start session.'
;
Yii
::
error
(
$message
,
__CLASS__
);
}
else
{
$this
->
updateFlashCounters
();
if
(
session_id
()
==
''
)
{
$this
->
_opened
=
false
;
$error
=
error_get_last
();
$message
=
isset
(
$error
[
'message'
])
?
$error
[
'message'
]
:
'Failed to start session.'
;
Yii
::
error
(
$message
,
__CLASS__
);
}
else
{
$this
->
_opened
=
true
;
$this
->
updateFlashCounters
();
}
}
}
...
...
@@ -123,6 +130,7 @@ class Session extends Component implements \IteratorAggregate, \ArrayAccess, \Co
*/
public
function
close
()
{
$this
->
_opened
=
false
;
if
(
session_id
()
!==
''
)
{
@
session_write_close
();
}
...
...
@@ -149,7 +157,7 @@ class Session extends Component implements \IteratorAggregate, \ArrayAccess, \Co
return
session_status
()
==
PHP_SESSION_ACTIVE
;
}
else
{
// this is not very reliable
return
session_id
()
!==
''
;
return
$this
->
_opened
&&
session_id
()
!==
''
;
}
}
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment