|
Stomp::readFramestomp_read_frameReads the next frame DescriptionObject-oriented style (method):
public stompframe Stomp::readFrame(string
$class_name = "stompFrame")Procedural style: 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. Parameters
Return Values
Changelog
Examples
Example #1 Object-oriented style
The above example will output something similar to: 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" }
Example #2 Procedural style
The above example will output something similar to: 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" } } |