server.php

来自「PHP 知识管理系统(基于树结构的知识管理系统), 英文原版的PHP源码。」· PHP 代码 · 共 803 行 · 第 1/2 页

PHP
803
字号
	$setcookies_doc='Sends to client a response containing a single \'1\' digit, and sets to it http cookies as received in the request (array of structs describing a cookie)';
	function setcookies($m)
	{
		$m = $m->getParam(0);
		while(list($name,$value) = $m->structeach())
		{
			$cookiedesc = php_xmlrpc_decode($value);
			setcookie($name, @$cookiedesc['value'], @$cookiedesc['expires'], @$cookiedesc['path'], @$cookiedesc['domain'], @$cookiedesc['secure']);
		}
		return new xmlrpcresp(new xmlrpcval(1, 'int'));
	}

	$v1_arrayOfStructs_sig=array(array($xmlrpcInt, $xmlrpcArray));
	$v1_arrayOfStructs_doc='This handler takes a single parameter, an array of structs, each of which contains at least three elements named moe, larry and curly, all <i4>s. Your handler must add all the struct elements named curly and return the result.';
	function v1_arrayOfStructs($m)
	{
		$sno=$m->getParam(0);
		$numcurly=0;
		for($i=0; $i<$sno->arraysize(); $i++)
		{
			$str=$sno->arraymem($i);
			$str->structreset();
			while(list($key,$val)=$str->structeach())
			{
				if ($key=="curly")
				{
					$numcurly+=$val->scalarval();
				}
			}
		}
		return new xmlrpcresp(new xmlrpcval($numcurly, "int"));
	}

	$v1_easyStruct_sig=array(array($xmlrpcInt, $xmlrpcStruct));
	$v1_easyStruct_doc='This handler takes a single parameter, a struct, containing at least three elements named moe, larry and curly, all &lt;i4&gt;s. Your handler must add the three numbers and return the result.';
	function v1_easyStruct($m)
	{
		$sno=$m->getParam(0);
		$moe=$sno->structmem("moe");
		$larry=$sno->structmem("larry");
		$curly=$sno->structmem("curly");
		$num=$moe->scalarval() + $larry->scalarval() + $curly->scalarval();
		return new xmlrpcresp(new xmlrpcval($num, "int"));
	}

	$v1_echoStruct_sig=array(array($xmlrpcStruct, $xmlrpcStruct));
	$v1_echoStruct_doc='This handler takes a single parameter, a struct. Your handler must return the struct.';
	function v1_echoStruct($m)
	{
		$sno=$m->getParam(0);
		return new xmlrpcresp($sno);
	}

	$v1_manyTypes_sig=array(array(
		$xmlrpcArray, $xmlrpcInt, $xmlrpcBoolean,
		$xmlrpcString, $xmlrpcDouble, $xmlrpcDateTime,
		$xmlrpcBase64
	));
	$v1_manyTypes_doc='This handler takes six parameters, and returns an array containing all the parameters.';
	function v1_manyTypes($m)
	{
		return new xmlrpcresp(new xmlrpcval(array(
			$m->getParam(0),
			$m->getParam(1),
			$m->getParam(2),
			$m->getParam(3),
			$m->getParam(4),
			$m->getParam(5)),
			"array"
		));
	}

	$v1_moderateSizeArrayCheck_sig=array(array($xmlrpcString, $xmlrpcArray));
	$v1_moderateSizeArrayCheck_doc='This handler takes a single parameter, which is an array containing between 100 and 200 elements. Each of the items is a string, your handler must return a string containing the concatenated text of the first and last elements.';
	function v1_moderateSizeArrayCheck($m)
	{
		$ar=$m->getParam(0);
		$sz=$ar->arraysize();
		$first=$ar->arraymem(0);
		$last=$ar->arraymem($sz-1);
		return new xmlrpcresp(new xmlrpcval($first->scalarval() .
		$last->scalarval(), "string"));
	}

	$v1_simpleStructReturn_sig=array(array($xmlrpcStruct, $xmlrpcInt));
	$v1_simpleStructReturn_doc='This handler takes one parameter, and returns a struct containing three elements, times10, times100 and times1000, the result of multiplying the number by 10, 100 and 1000.';
	function v1_simpleStructReturn($m)
	{
		$sno=$m->getParam(0);
		$v=$sno->scalarval();
		return new xmlrpcresp(new xmlrpcval(array(
			"times10"   => new xmlrpcval($v*10, "int"),
			"times100"  => new xmlrpcval($v*100, "int"),
			"times1000" => new xmlrpcval($v*1000, "int")),
			"struct"
		));
	}

	$v1_nestedStruct_sig=array(array($xmlrpcInt, $xmlrpcStruct));
	$v1_nestedStruct_doc='This handler takes a single parameter, a struct, that models a daily calendar. At the top level, there is one struct for each year. Each year is broken down into months, and months into days. Most of the days are empty in the struct you receive, but the entry for April 1, 2000 contains a least three elements named moe, larry and curly, all &lt;i4&gt;s. Your handler must add the three numbers and return the result.';
	function v1_nestedStruct($m)
	{
		$sno=$m->getParam(0);

		$twoK=$sno->structmem("2000");
		$april=$twoK->structmem("04");
		$fools=$april->structmem("01");
		$curly=$fools->structmem("curly");
		$larry=$fools->structmem("larry");
		$moe=$fools->structmem("moe");
		return new xmlrpcresp(new xmlrpcval($curly->scalarval() + $larry->scalarval() + $moe->scalarval(), "int"));
	}

	$v1_countTheEntities_sig=array(array($xmlrpcStruct, $xmlrpcString));
	$v1_countTheEntities_doc='This handler takes a single parameter, a string, that contains any number of predefined entities, namely &lt;, &gt;, &amp; \' and ".<BR>Your handler must return a struct that contains five fields, all numbers: ctLeftAngleBrackets, ctRightAngleBrackets, ctAmpersands, ctApostrophes, ctQuotes.';
	function v1_countTheEntities($m)
	{
		$sno=$m->getParam(0);
		$str=$sno->scalarval();
		$gt=0; $lt=0; $ap=0; $qu=0; $amp=0;
		for($i=0; $i<strlen($str); $i++)
		{
			$c=substr($str, $i, 1);
			switch($c)
			{
				case ">":
					$gt++;
					break;
				case "<":
					$lt++;
					break;
				case "\"":
					$qu++;
					break;
				case "'":
					$ap++;
					break;
				case "&":
					$amp++;
					break;
				default:
					break;
			}
		}
		return new xmlrpcresp(new xmlrpcval(array(
			"ctLeftAngleBrackets"  => new xmlrpcval($lt, "int"),
			"ctRightAngleBrackets" => new xmlrpcval($gt, "int"),
			"ctAmpersands"         => new xmlrpcval($amp, "int"),
			"ctApostrophes"        => new xmlrpcval($ap, "int"),
			"ctQuotes"             => new xmlrpcval($qu, "int")),
			"struct"
		));
	}

	// trivial interop tests
	// http://www.xmlrpc.com/stories/storyReader$1636

	$i_echoString_sig=array(array($xmlrpcString, $xmlrpcString));
	$i_echoString_doc="Echoes string.";

	$i_echoStringArray_sig=array(array($xmlrpcArray, $xmlrpcArray));
	$i_echoStringArray_doc="Echoes string array.";

	$i_echoInteger_sig=array(array($xmlrpcInt, $xmlrpcInt));
	$i_echoInteger_doc="Echoes integer.";

	$i_echoIntegerArray_sig=array(array($xmlrpcArray, $xmlrpcArray));
	$i_echoIntegerArray_doc="Echoes integer array.";

	$i_echoFloat_sig=array(array($xmlrpcDouble, $xmlrpcDouble));
	$i_echoFloat_doc="Echoes float.";

	$i_echoFloatArray_sig=array(array($xmlrpcArray, $xmlrpcArray));
	$i_echoFloatArray_doc="Echoes float array.";

	$i_echoStruct_sig=array(array($xmlrpcStruct, $xmlrpcStruct));
	$i_echoStruct_doc="Echoes struct.";

	$i_echoStructArray_sig=array(array($xmlrpcArray, $xmlrpcArray));
	$i_echoStructArray_doc="Echoes struct array.";

	$i_echoValue_doc="Echoes any value back.";
	$i_echoValue_sig=array(array($xmlrpcValue, $xmlrpcValue));

	$i_echoBase64_sig=array(array($xmlrpcBase64, $xmlrpcBase64));
	$i_echoBase64_doc="Echoes base64.";

	$i_echoDate_sig=array(array($xmlrpcDateTime, $xmlrpcDateTime));
	$i_echoDate_doc="Echoes dateTime.";

	function i_echoParam($m)
	{
		$s=$m->getParam(0);
		return new xmlrpcresp($s);
	}

	function i_echoString($m) { return i_echoParam($m); }
	function i_echoInteger($m) { return i_echoParam($m); }
	function i_echoFloat($m) { return i_echoParam($m); }
	function i_echoStruct($m) { return i_echoParam($m); }
	function i_echoStringArray($m) { return i_echoParam($m); }
	function i_echoIntegerArray($m) { return i_echoParam($m); }
	function i_echoFloatArray($m) { return i_echoParam($m); }
	function i_echoStructArray($m) { return i_echoParam($m); }
	function i_echoValue($m) { return i_echoParam($m); }
	function i_echoBase64($m) { return i_echoParam($m); }
	function i_echoDate($m) { return i_echoParam($m); }

	$i_whichToolkit_sig=array(array($xmlrpcStruct));
	$i_whichToolkit_doc="Returns a struct containing the following strings: toolkitDocsUrl, toolkitName, toolkitVersion, toolkitOperatingSystem.";

	function i_whichToolkit($m)
	{
		global $xmlrpcName, $xmlrpcVersion,$SERVER_SOFTWARE;
		$ret=array(
			"toolkitDocsUrl" => "http://phpxmlrpc.sourceforge.net/",
			"toolkitName" => $xmlrpcName,
			"toolkitVersion" => $xmlrpcVersion,
			"toolkitOperatingSystem" => isset ($SERVER_SOFTWARE) ? $SERVER_SOFTWARE : $_SERVER['SERVER_SOFTWARE']
		);
		return new xmlrpcresp ( php_xmlrpc_encode($ret));
	}

	$o=new xmlrpc_server_methods_container;
	$a=array(
		"examples.getStateName" => array(
			"function" => "findstate",
			"signature" => $findstate_sig,
			"docstring" => $findstate_doc
		),
		"examples.sortByAge" => array(
			"function" => "agesorter",
			"signature" => $agesorter_sig,
			"docstring" => $agesorter_doc
		),
		"examples.addtwo" => array(
			"function" => "addtwo",
			"signature" => $addtwo_sig,
			"docstring" => $addtwo_doc
		),
		"examples.addtwodouble" => array(
			"function" => "addtwodouble",
			"signature" => $addtwodouble_sig,
			"docstring" => $addtwodouble_doc
		),
		"examples.stringecho" => array(
			"function" => "stringecho",
			"signature" => $stringecho_sig,
			"docstring" => $stringecho_doc
		),
		"examples.echo" => array(
			"function" => "echoback",
			"signature" => $echoback_sig,
			"docstring" => $echoback_doc
		),
		"examples.decode64" => array(
			"function" => "echosixtyfour",
			"signature" => $echosixtyfour_sig,
			"docstring" => $echosixtyfour_doc
		),
		"examples.invertBooleans" => array(
			"function" => "bitflipper",
			"signature" => $bitflipper_sig,
			"docstring" => $bitflipper_doc
		),
		"examples.generatePHPWarning" => array(
			"function" => array($o, "phpwarninggenerator")
			//'function' => 'xmlrpc_server_methods_container::phpwarninggenerator'
		),
		"examples.getallheaders" => array(
			"function" => 'getallheaders_xmlrpc',
			"signature" => $getallheaders_sig,
			"docstring" => $getallheaders_doc
		),
		"examples.setcookies" => array(
			"function" => 'setcookies',
			"signature" => $setcookies_sig,
			"docstring" => $setcookies_doc
		),
		"mail.send" => array(
			"function" => "mail_send",
			"signature" => $mail_send_sig,
			"docstring" => $mail_send_doc
		),
		"validator1.arrayOfStructsTest" => array(
			"function" => "v1_arrayOfStructs",
			"signature" => $v1_arrayOfStructs_sig,
			"docstring" => $v1_arrayOfStructs_doc
		),
		"validator1.easyStructTest" => array(
			"function" => "v1_easyStruct",
			"signature" => $v1_easyStruct_sig,
			"docstring" => $v1_easyStruct_doc
		),
		"validator1.echoStructTest" => array(
			"function" => "v1_echoStruct",
			"signature" => $v1_echoStruct_sig,
			"docstring" => $v1_echoStruct_doc
		),
		"validator1.manyTypesTest" => array(
			"function" => "v1_manyTypes",
			"signature" => $v1_manyTypes_sig,
			"docstring" => $v1_manyTypes_doc
		),
		"validator1.moderateSizeArrayCheck" => array(
			"function" => "v1_moderateSizeArrayCheck",
			"signature" => $v1_moderateSizeArrayCheck_sig,
			"docstring" => $v1_moderateSizeArrayCheck_doc
		),
		"validator1.simpleStructReturnTest" => array(
			"function" => "v1_simpleStructReturn",
			"signature" => $v1_simpleStructReturn_sig,
			"docstring" => $v1_simpleStructReturn_doc
		),
		"validator1.nestedStructTest" => array(
			"function" => "v1_nestedStruct",
			"signature" => $v1_nestedStruct_sig,
			"docstring" => $v1_nestedStruct_doc
		),
		"validator1.countTheEntities" => array(
			"function" => "v1_countTheEntities",
			"signature" => $v1_countTheEntities_sig,
			"docstring" => $v1_countTheEntities_doc
		),
		"interopEchoTests.echoString" => array(
			"function" => "i_echoString",
			"signature" => $i_echoString_sig,
			"docstring" => $i_echoString_doc
		),
		"interopEchoTests.echoStringArray" => array(
			"function" => "i_echoStringArray",
			"signature" => $i_echoStringArray_sig,
			"docstring" => $i_echoStringArray_doc
		),
		"interopEchoTests.echoInteger" => array(
			"function" => "i_echoInteger",
			"signature" => $i_echoInteger_sig,
			"docstring" => $i_echoInteger_doc
		),
		"interopEchoTests.echoIntegerArray" => array(
			"function" => "i_echoIntegerArray",
			"signature" => $i_echoIntegerArray_sig,
			"docstring" => $i_echoIntegerArray_doc
		),
		"interopEchoTests.echoFloat" => array(
			"function" => "i_echoFloat",
			"signature" => $i_echoFloat_sig,
			"docstring" => $i_echoFloat_doc
		),
		"interopEchoTests.echoFloatArray" => array(
			"function" => "i_echoFloatArray",
			"signature" => $i_echoFloatArray_sig,
			"docstring" => $i_echoFloatArray_doc
		),
		"interopEchoTests.echoStruct" => array(
			"function" => "i_echoStruct",
			"signature" => $i_echoStruct_sig,
			"docstring" => $i_echoStruct_doc
		),
		"interopEchoTests.echoStructArray" => array(
			"function" => "i_echoStructArray",
			"signature" => $i_echoStructArray_sig,
			"docstring" => $i_echoStructArray_doc
		),
		"interopEchoTests.echoValue" => array(
			"function" => "i_echoValue",
			"signature" => $i_echoValue_sig,
			"docstring" => $i_echoValue_doc
		),
		"interopEchoTests.echoBase64" => array(
			"function" => "i_echoBase64",
			"signature" => $i_echoBase64_sig,
			"docstring" => $i_echoBase64_doc
		),
		"interopEchoTests.echoDate" => array(
			"function" => "i_echoDate",
			"signature" => $i_echoDate_sig,
			"docstring" => $i_echoDate_doc
		),
		"interopEchoTests.whichToolkit" => array(
			"function" => "i_whichToolkit",
			"signature" => $i_whichToolkit_sig,
			"docstring" => $i_whichToolkit_doc
		)
	);

	if ($findstate2_sig)
		$a['examples.php.getStateName'] = $findstate2_sig;

	$s=new xmlrpc_server($a, false);
	$s->setdebug(3);
	$s->compress_response = true;

	// out-of-band information: let the client manipulate the server operations.
	// we do this to help the testsuite script: do not reproduce in production!
	if (isset($_GET['RESPONSE_ENCODING']))
		$s->response_charset_encoding = $_GET['RESPONSE_ENCODING'];

	$s->service();
	// that should do all we need!
?>

⌨️ 快捷键说明

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