本文整理汇总了PHP中ezcWebdavServer::handle方法的典型用法代码示例。如果您正苦于以下问题:PHP ezcWebdavServer::handle方法的具体用法?PHP ezcWebdavServer::handle怎么用?PHP ezcWebdavServer::handle使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类ezcWebdavServer
的用法示例。
在下文中一共展示了ezcWebdavServer::handle方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: performTestSetRun
protected function performTestSetRun(array $request)
{
ezcWebdavTestTransportInjector::reset();
ezcWebdavTestTransportInjector::$requestBody = $request['body'];
$_SERVER = $request['server'];
// ini_set( 'xdebug.collect_return', 1 );
// xdebug_start_trace( './traces/' . basename( $testSetName ) );
$this->server->handle($this->backend);
// xdebug_stop_trace();
$response['status'] = ezcWebdavTestTransportInjector::$responseStatus;
$response['headers'] = ezcWebdavTestTransportInjector::$responseHeaders;
$response['body'] = ezcWebdavTestTransportInjector::$responseBody;
return $response;
}
示例2: performTestSetRun
protected function performTestSetRun(array $request)
{
$GLOBALS['EZC_WEBDAV_TRANSPORT_TEST_BODY'] = $request['body'];
$_SERVER = $request['server'];
// ini_set( 'xdebug.collect_return', 1 );
// xdebug_start_trace( './traces/' . basename( $testSetName ) );
$this->server->handle($this->backend);
// xdebug_stop_trace();
$response['body'] = $GLOBALS['EZC_WEBDAV_TRANSPORT_TEST_RESPONSE_BODY'];
$response['headers'] = $GLOBALS['EZC_WEBDAV_TRANSPORT_TEST_RESPONSE_HEADERS'];
$response['status'] = $GLOBALS['EZC_WEBDAV_TRANSPORT_TEST_RESPONSE_STATUS'];
// Reset globals
unset($GLOBALS['EZC_WEBDAV_TRANSPORT_TEST_BODY']);
unset($GLOBALS['EZC_WEBDAV_TRANSPORT_TEST_RESPONSE_BODY']);
unset($GLOBALS['EZC_WEBDAV_TRANSPORT_TEST_RESPONSE_HEADERS']);
unset($GLOBALS['EZC_WEBDAV_TRANSPORT_TEST_RESPONSE_STATUS']);
return $response;
}
示例3: run
/**
* Runs the server.
*
* @return void
*/
public function run()
{
$GLOBALS['EZC_WEBDAV_ERROR'] = array();
set_error_handler(array($this, 'handleErrors'));
try {
$this->server->handle($this->backend);
} catch (Exception $e) {
$this->exceptions[] = $e;
}
restore_error_handler();
}