0
0
mirror of https://github.com/pmmp/ext-encoding.git synced 2025-09-22 21:29:33 +00:00
Files
ext-encoding/tests/reader/new.phpt
2025-09-06 17:28:23 +01:00

22 lines
416 B
PHP

--TEST--
Test that new ByteBufferReader() works correctly
--FILE--
<?php
use pmmp\encoding\ByteBufferReader;
$buffer = new ByteBufferReader("abc");
var_dump($buffer->getData());
$buffer = new ByteBufferReader("");
var_dump($buffer->getData());
$buffer = new ByteBufferReader("hello world");
$buffer->setOffset(6);
var_dump($buffer->readByteArray(5));
?>
--EXPECT--
string(3) "abc"
string(0) ""
string(5) "world"