command line switches to turn Unicode on/off

php.internals

Antony Dovgal

19 years ago
Hello all. I'd like to propose a small patch adding two command line switches to CLI (HEAD): -U - turn Unicode mode on -N - turn Unicode mode off Typing "-d unicode.semantics=1" or "-d unicode.semantics=0" is annoying, so I would really like to see these shortcuts added. I'll port it to CGI later if there are no objections. The patch: http://dev.daylessday.org/diff/unicode_switches.diff
-- Wbr, Antony Dovgal

Pierre Joye

19 years ago
On 6/5/07, Antony Dovgal <antony@zend.com> wrote:
> Hello all. > > I'd like to propose a small patch adding two command line switches to CLI (HEAD):
Very good idea!
> -U - turn Unicode mode on > -N - turn Unicode mode off
What's about: long: --unicode (0|off)/(1/on) short: -u (0|off)/(1/on) I prefer one option for one purpose. --Pierre