文件名称:buffer:用于在PHP中操作二进制数据的简单库
文件大小:3KB
文件格式:ZIP
更新时间:2024-06-13 07:51:54
php php7 binary-data binary php-library
PHPinnacle缓冲区 PHPinnacle Buffer是用于在PHP中操作二进制数据的简单工具。 通常,它只是包装PHP打包/解包功能。 安装 通过作曲家 $ composer require phpinnacle/buffer 基本用法 <?php use PHPinnacle \ Buffer \ ByteBuffer ; // AMQP protocol header $ buffer = new ByteBuffer ; $ buffer -> append ( 'AMQP' ) -> appendUint8 ( 0 ) -> appendUint8 ( 0 ) -> appendUint8 ( 9 ) -> appendUint8 ( 1 ) ; 测验 $ composer test 基准测试 $ composer bench
【文件预览】:
buffer-master
----src()
--------BufferOverflow.php(414B)
--------ByteBuffer.php(13KB)
----composer.json(1KB)