soap_getgroupinfo.php

来自「一个通用的php网站的会员系统和通行证系统」· PHP 代码 · 共 25 行

PHP
25
字号
<?php
import("com.member.biz.Auth");

function SOAP_GetGroupInfo(&$soap, &$params)
{	
	global $db,$table;
	$return = array();

	$result = $db->getRow("SELECT * FROM $table->group where GroupID=".$params['GroupID']);
	 
	if($result) {
		$soap->Response_hRet = SOAP_OK;
		$soap->Response_FeatureStr = "success";
		$soap->setEncode(false);
		$soap->addResponseElement("Info", serialize($result));
		return true;
	} else {
		$soap->Response_hRet = SOAP_LOGIC_ERROR;
		$soap->Response_FeatureStr = "nothing";
		return false;
 		
	}

}
?>

⌨️ 快捷键说明

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