⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 soap_activesession.php

📁 一个通用的php网站的会员系统和通行证系统
💻 PHP
字号:
<?php
import("com.member.biz.Auth");

function SOAP_ActiveSession(&$soap, &$params)
{	
	global $db,$table;
	//print_r($params);
 	if(empty($params['sId'])) {
		$soap->Response_hRet = SOAP_LOGIC_ERROR;
		$soap->Response_FeatureStr = "ActionReq Action [ActiveSession] Error: sId is null";
		return false;
	}  

 
	$Auth = new Auth();
	$Auth->sId = $params["sId"];

	if($Auth->activeSession()) {
		$soap->Response_hRet = SOAP_OK;
		$soap->Response_FeatureStr = "activeSession success";
 		return true;
	} else {
		$soap->Response_hRet = SOAP_LOGIC_ERROR;
 		$soap->Response_FeatureStr = "activeSession error";
 		return false;
 		
	}

}
?>

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -