|
Stomp::readFramestomp_read_frameReads the next frame BeschreibungObjektorientierter Stil (method):
public stompframe Stomp::readFrame
([ string
$class_name = "stompFrame"
] )Prozeduraler Stil:
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. Parameter-Liste
Rückgabewerte
Changelog
Beispiele
Beispiel #1 Objektorientierter Stil
<?phpDas oben gezeigte Beispiel erzeugt eine ähnliche Ausgabe wie:
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"
}
Beispiel #2 Prozeduraler Stil
<?phpDas oben gezeigte Beispiel erzeugt eine ähnliche Ausgabe wie:
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"
}
}
|