35 lines
689 B
PHP
35 lines
689 B
PHP
<?php
|
|
/**
|
|
* Firestone_Protocol_S2C_OnlineQueryRet
|
|
*
|
|
* @package Firestone_Protocol_C2G
|
|
* @since 2010-8-30
|
|
* @author yaojie
|
|
*/
|
|
|
|
class Firestone_Protocol_S2C_OnlineQueryRet extends Firestone_Protocol_QMEProtocolReceiveAbstract
|
|
{
|
|
|
|
/**
|
|
*
|
|
* @var data的解包字符串
|
|
*/
|
|
protected $unpackFormatString = 'a51account/Vcharid/Vipaddr/Vlogintime/Vindex';
|
|
|
|
|
|
/**
|
|
*
|
|
* @var 接收的data格式 非重复结构 0 重复结构为1
|
|
*/
|
|
protected $dataType = 1;
|
|
|
|
/**
|
|
* data 块长度
|
|
* @var integer
|
|
*/
|
|
protected $blockLength = 77;
|
|
}
|
|
|
|
|
|
// End ^ Native EOL ^ encoding
|