in the yii2 framework, you can see that when php communicates with redis through socket, the 8bit encoding is used to calculate the length of the string and intercept the returned information in the framework:
mb_strlen($arg, "8bit")
there is no description of this encoding in the document. When should I use this encoding? This coding method will not have a problem with Chinese coding?