update : 2015.11.03
php.shukuma.com

검색:
 
 
The getType purpose

Yar_Server_Exception::getType

(PECL yar >= 1.0.0)

Yar_Server_Exception::getTypeThe getType purpose

설명

public string Yar_Server_Exception::getType ( void )

Get the exception original type threw by server

인수

이 함수는 인수가 없습니다.

반환값

string

예제

Example #1 Yar_Server_Exception::getType() example

//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"

참고