----------------------------------------------------------------------
()
| 175 | |
| 176 | //---------------------------------------------------------------------- |
| 177 | public function eatKanji() |
| 178 | { |
| 179 | $p = 0; |
| 180 | |
| 181 | while($this->identifyMode($p) == QR_MODE_KANJI) { |
| 182 | $p += 2; |
| 183 | } |
| 184 | |
| 185 | $ret = $this->input->append(QR_MODE_KANJI, $p, str_split($this->dataStr)); |
| 186 | if($ret < 0) |
| 187 | return -1; |
| 188 | |
| 189 | return $run; |
| 190 | } |
| 191 | |
| 192 | //---------------------------------------------------------------------- |
| 193 | public function eat8() |
no test coverage detected