Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Working example.

On my local Gentoo Box i open php -a and try to type in echo "äöü"; and it echoes

äöü

Now the actually problem.

On my Ubuntu Server, connected with urxvt (tried xterm too), everything in LC_* is set to de_DE.utf8 i launch php -a and try to press ä and absolute nothing happens.

PHP Version on Gentoo: PHP 5.3.18-pl0-gentoo (cli) (built: Dec 20 2012 10:15:21) PHP Version on my Ubuntu Server: PHP 5.3.10-1ubuntu3.4 with Suhosin-Patch (cli) (built: Sep 12 2012 18:59:41)

share|improve this question
But the problem only occurs when i launch php -a. On my regular console echo "äöü" works like a charm. – Pierre Geier Dec 28 '12 at 13:45

1 Answer

php interactive shell does not support multibyte characters if php was not compiled with '--with-readline' option.

Visit this link to know more about compiling php with '--with-readline'

share|improve this answer
php -m shows that readline php is compiled with readline. And my interactive shell shows the prompt too. Interactive shell php > Useful link. – Pierre Geier Jan 4 at 9:52

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.