コード例 #1
0
ファイル: Writer.php プロジェクト: swk/bluebox
 /**
  * Write an integer as an unsigned 64-bit value.
  */
 public function write_longlong($n)
 {
     $this->flushbits();
     $this->out .= implode("", AMQP_Writer::chrbytesplit($n, 8));
 }