----------------------------------------------------------------------
()
| 2112 | |
| 2113 | //---------------------------------------------------------------------- |
| 2114 | public function eatKanji() |
| 2115 | { |
| 2116 | $p = 0; |
| 2117 | |
| 2118 | while($this->identifyMode($p) == QR_MODE_KANJI) { |
| 2119 | $p += 2; |
| 2120 | } |
| 2121 | |
| 2122 | $ret = $this->input->append(QR_MODE_KANJI, $p, str_split($this->dataStr)); |
| 2123 | if($ret < 0) |
| 2124 | return -1; |
| 2125 | |
| 2126 | return $run; |
| 2127 | } |
| 2128 | |
| 2129 | //---------------------------------------------------------------------- |
| 2130 | public function eat8() |
no test coverage detected