update : 2015.11.03
php.shukuma.com검색:
|
Stomp::errorstomp_error(PECL stomp >= 0.1.0) Stomp::error -- stomp_error — Gets the last stomp error 설명객체 기반 형식 (method):
public string Stomp::error
( void
)
절차식 형식:
string stomp_error
( resource
$link
)Gets the last stomp error. 반환값
Returns an error string or 예제
Example #1 객체 기반 형식
<?php 위 예제의 출력 예시: bool(false) string(43) "Invalid transaction id: unknown-transaction"
Example #2 절차식 형식
<?php 위 예제의 출력 예시: bool(false) string(43) "Invalid transaction id: unknown-transaction" |