type('int'), [3]); $res = \FFI::new($arrayType); $arrayType = self::$ffi->keyCode($device); return [ 'type' => $arrayType[0], 'code' => $arrayType[1], 'value' => $arrayType[2], 'keyCode' => $arrayType[3], ]; }*/ public function getch(): int { return self::$ffi->_getch(); } public function ungetch($char): int { if (!is_string($char) && !is_int($char)) { throw new \TypeError('ungetch takes a parameter of int or string.'); } if (is_string($char)) { $char = ord($char[0]); } return self::$ffi->_ungetch($char); } }