Home > php教程 > php手册 > php session操作

php session操作

WBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWB
Release: 2016-06-06 20:01:03
Original
1001 people have browsed it

function set_session($k,$v){ global $session_prefix; if(is_NULL($v)||$v=='') { unset($_SESSION[$session_prefix.$k]); } else { $_SESSION[$session_prefix.$k] = $v; } } function get_session($k){ global $session_prefix; if(isset($_SESSION[$ses

function set_session($k,$v){

global $session_prefix;

if(is_NULL($v)||$v=='')

{

unset($_SESSION[$session_prefix.$k]);

}

else

{

$_SESSION[$session_prefix.$k] = $v;

}

}

 

function get_session($k){

global $session_prefix;

if(isset($_SESSION[$session_prefix.$k])) return $_SESSION[$session_prefix.$k];

return null;

}

 

function set_sess_admin($v)

{

set_session('admin_name',$v);

}

 

function get_sess_admin()

{

return get_session('admin_name');

}

Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Latest Issues
php data acquisition?
From 1970-01-01 08:00:00
0
0
0
PHP extension intl
From 1970-01-01 08:00:00
0
0
0
How to learn php well
From 1970-01-01 08:00:00
0
0
0
Popular Recommendations
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template