update : 2015.11.03
php.shukuma.com검색:
|
Stomp::getSessionIdstomp_get_session_id(PECL stomp >= 0.1.0) Stomp::getSessionId -- stomp_get_session_id — Gets the current stomp session ID 설명객체 기반 형식 (method):
public string Stomp::getSessionId
( void
)
절차식 형식:
string stomp_get_session_id
( resource
$link
)Gets the current stomp session ID. 반환값
string session id on success실패 시 예제
Example #1 객체 기반 형식
<?php 위 예제의 출력 예시: string(35) "ID:php.net-52873-1257291895530-4:14"
Example #2 절차식 형식
<?php 위 예제의 출력 예시: string(35) "ID:php.net-52873-1257291895530-4:14" |