Stomp::readFramestomp_read_frameReads the next frame 説明オブジェクト指向型 (method):
public stompframe Stomp::readFrame(string
$class_name = "stompFrame")手続き型: array stomp_read_frame(resource
$link )Reads the next frame. It is possible to instantiate an object of a specific class, and pass parameters to that class's constructor. パラメータ
戻り値
変更履歴
例
例1 オブジェクト指向型
上の例の出力は、 たとえば以下のようになります。 object(StompFrame)#2 (3) { ["command"]=> string(7) "MESSAGE" ["headers"]=> array(5) { ["message-id"]=> string(41) "ID:php.net-55293-1257226743606-4:2:-1:1:1" ["destination"]=> string(10) "/queue/foo" ["timestamp"]=> string(13) "1257226805828" ["expires"]=> string(1) "0" ["priority"]=> string(1) "0" } ["body"]=> string(3) "bar" }
例2 手続き型
上の例の出力は、 たとえば以下のようになります。 array(3) { ["command"]=> string(7) "MESSAGE" ["body"]=> string(3) "bar" ["headers"]=> array(6) { ["transaction"]=> string(2) "t1" ["message-id"]=> string(41) "ID:php.net-55293-1257226743606-4:3:-1:1:1" ["destination"]=> string(10) "/queue/foo" ["timestamp"]=> string(13) "1257227037059" ["expires"]=> string(1) "0" ["priority"]=> string(1) "0" } } |