avriltank
Results
5
issues of
avriltank
For example: strlen("张三") //should be 6,php code Encoding.Default.GetByteCount("张三") if we edit the code of peachpie,there are many functions should be edited,such as "strpos","strrpos","fread"....
```go func (bs *BitStream) GetBit() uint8 { if bs.bytesOffset >= len(bs.bits) { panic("OUT OF RANGE") } ret := bs.bits[bs.bytesOffset] >> (7 - bs.bitsOffset) & 0x01 bs.bitsOffset++ if bs.bitsOffset >= 8...