Closed mruz closed 4 years ago
let e = "\e",
\e character (hex 1B) is escaped to \\e
\e
\\e
https://github.com/phalcon/zephir/issues/2065
A solution could be change to:
let e = chr(27),
It has been fixed in zephir development branch.
development
Fixed in https://github.com/ice/framework/pull/264
\e
character (hex 1B) is escaped to\\e
https://github.com/phalcon/zephir/issues/2065
A solution could be change to: