|
update : 2015.11.03
php.shukuma.com검색:
|
Stomp::getReadTimeoutstomp_get_read_timeout(PECL stomp >= 0.3.0) Stomp::getReadTimeout -- stomp_get_read_timeout — Gets read timeout 설명객체 기반 형식 (method):
public array Stomp::getReadTimeout
( void
)
절차식 형식:
array stomp_get_read_timeout
( resource
$link
)Gets read timeout 반환값Returns an array with 2 elements: sec and usec. 예제
Example #1 객체 기반 형식
<?php위 예제의 출력 예시:
array(2) {
["sec"]=>
int(2)
["usec"]=>
int(0)
}
Example #2 절차식 형식
<?php위 예제의 출력 예시:
array(2) {
["sec"]=>
int(2)
["usec"]=>
int(0)
}
|