(PECL yar >= 1.0.0)
Yar_Server_Exception::getType — 獲取異常的原始類型
當(dāng)服務(wù)端的服務(wù)函數(shù)拋出異常的時(shí)候, 客戶端本地會響應(yīng)的拋出一個(gè)Yar_Server_Exception異常. 有一個(gè)屬性, 標(biāo)明了服務(wù)端異常的類型. 這個(gè)方法就是獲取這個(gè)異常類型.
此函數(shù)沒有參數(shù)。
string
示例 #1 Yar_Server_Exception::getType()示例
//Server.php
<?php
class Custom_Exception extends Exception {};
class API {
public function throw_exception($name) {
throw new Custom_Exception($name);
}
}
$service = new Yar_Server(new API());
$service->handle();
?>
//Client.php
<?php
$client = new Yar_Client("http://host/api.php");
try {
$client->throw_exception("client");
} catch (Yar_Server_Exception $e) {
var_dump($e->getType());
var_dump($e->getMessage());
}
以上例程的輸出類似于:
string(16) "Custom_Exception" string(6) "client"