芝麻web文件管理V1.00
编辑当前文件:/home/strato/chroot/opt/RZphp80/includes/XML/RPC2/Server/Input.php
| * +-----------------------------------------------------------------------------+ * * @category XML * @package XML_RPC2 * @author Sergio Carvalho
* @copyright 2004-2006 Sergio Carvalho * @license http://www.gnu.org/copyleft/lesser.html LGPL License 2.1 * @version CVS: $Id: Method.php 295362 2010-02-22 07:17:31Z clockwerx $ * @link http://pear.php.net/package/XML_RPC2 */ // }}} /** * Interface for feeding input to an XML_RPC2_Server * * Classes to be used as input readers for XML_RPC2_Server instances * should implement this interface * * @category XML * @package XML_RPC2 * @author Sergio Carvalho
* @copyright 2011 Sergio Carvalho * @license http://www.gnu.org/copyleft/lesser.html LGPL License 2.1 * @link http://pear.php.net/package/XML_RPC2 */ interface XML_RPC2_Server_Input { /** * Return true if there is no input (input is empty) * * @return boolean True iff there is no input */ public function isEmpty(); /** * Return the input as a string * * @return string The Input */ public function readRequest(); }