Stomp::getReadTimeoutstomp_get_read_timeoutGets read timeout 説明オブジェクト指向型 (method):
public array Stomp::getReadTimeout()
手続き型: array stomp_get_read_timeout(resource
$link)Gets read timeout パラメータ
戻り値Returns an array with 2 elements: sec and usec. 例
例1 オブジェクト指向型 上の例の出力は、 たとえば以下のようになります。
array(2) {
["sec"]=>
int(2)
["usec"]=>
int(0)
}
例2 手続き型 上の例の出力は、 たとえば以下のようになります。
array(2) {
["sec"]=>
int(2)
["usec"]=>
int(0)
}
|