當前位置: 首頁>>代碼示例>>PHP>>正文


PHP Client::quit方法代碼示例

本文整理匯總了PHP中Predis\Client::quit方法的典型用法代碼示例。如果您正苦於以下問題:PHP Client::quit方法的具體用法?PHP Client::quit怎麽用?PHP Client::quit使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在Predis\Client的用法示例。


在下文中一共展示了Client::quit方法的3個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。

示例1: __destruct

 /**
  * Closes the connection
  */
 public function __destruct()
 {
     parent::quit();
 }
開發者ID:formula9,項目名稱:framework,代碼行數:7,代碼來源:OpulencePredis.php

示例2: testQuitIsAliasForDisconnect

 /**
  * @group disconnected
  */
 public function testQuitIsAliasForDisconnect()
 {
     $connection = $this->getMock('Predis\\Connection\\ConnectionInterface');
     $connection->expects($this->once())->method('disconnect');
     $client = new Client($connection);
     $client->quit();
 }
開發者ID:rodrigopbel,項目名稱:ong,代碼行數:10,代碼來源:ClientTest.php

示例3: StreamHandler

$log->pushHandler(new StreamHandler(dirname(__DIR__) . '/' . $config['client']['log_file']));
//get params
if (!$_REQUEST['sender'] || !$_REQUEST['receiver'] || !$_REQUEST['text']) {
    $log->error('Invalid request');
    header("HTTP/1.1 420 OK");
    die("ERR 110");
}
$client = new PredisClient($config['redis_conn_url']);
$bulkNum = (int) $client->get(BULK_COUNTER);
$bulkNum++;
$client->set(BULK_COUNTER, $bulkNum);
$message = json_encode($_REQUEST);
//store message
$client->hset(BULK_HASH, $bulkNum, $message);
$client->publish('bulkmocksend', $message);
$client->quit();
$messageId = BulkUtils::guid();
$smsParts = BulkUtils::getNumberOfSMSsegments($_REQUEST['text']);
ob_start();
//close http conn. and flush
header("HTTP/1.1 202 OK");
echo "OK {$messageId} {$smsParts}";
$log->info("Valid request and replied: OK {$messageId} {$smsParts}");
header('Connection: close');
header('Content-Length: ' . ob_get_length());
ob_end_flush();
ob_flush();
flush();
//proceed with dlr
if (!isset($_REQUEST['dlr-url'])) {
    return;
開發者ID:rukavina,項目名稱:sms-bulk-mock,代碼行數:31,代碼來源:bulk-server.php


注:本文中的Predis\Client::quit方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。