crazyxman / hessian-parser
A client library for the Hessian binary data parse.
Installs: 3 287
Dependents: 2
Suggesters: 0
Security: 0
Stars: 8
Watchers: 0
Forks: 1
Open Issues: 1
Requires
- php: >=7.0
- icecave/chrono: ~1
- icecave/collections: ~1
This package is auto-updated.
Last update: 2025-03-14 20:07:07 UTC
README
Hessian format data parse
Add feature
add multi value parse. The following is the splicing of two serialized data together.The original function will stop when it resolves to the first stage.
E.g:
This is the original data after base64_encode:
$str = "2rsCFAAAAAAAAAAAAAAA95RDMCRjb20ua2FpeXVhbi5wMnAuY29tbW9uLnJlc3VsdC5SZXN1bHSZEWZhdWx0ZWRQcm9wZXJ0aWVzC2Vycm9yQ29kZXMxCmVycm9yQ29kZXMKcmVzdWx0Q29kZQhlbnRpdGllcwVpdGVtcwtyZXN1bHRQYXJ0cwxpc1N1Y2Nlc3NmdWwGc3RhdHVzYHAUamF2YS51dGlsLkxpbmtlZExpc3RwkHCQTk5xE2phdmEudXRpbC5BcnJheUxpc3QwJDliZTUxNjE0LTJmNDktNDZhNS05N2M1LWJlZmVlZTZjYjNhZkhaVMjISAVkdWJibwUyLjAuMlo=" $str = base64_decode($str); $dp = new DubboParser(); $data = $ps->getData($str);
Usage
$decoder = new Decoder; $decoder->feed($data); return $decoder->finalize();