[PHP-WIN] Re: PHP 5.2.11, Windows Vista and php_mbstring.dll

2009-10-16 Thread Carsten Wiedmann
Elizabeth M Smith schrieb: > Mbstring has an additional extension requirement - you MUST MUST enable > php_exif.dll before you enable mbstring It's vice versa. exif have a dependence to mbstring. So if you want load exif, you must first load mbstring. But you can still use mbstring without exif.

[PHP-WIN] Re: PHP console (php.exe -a)

2009-12-27 Thread Carsten Wiedmann
Am 27.12.2009 17:30, schrieb Rasmus Lerdorf: >> Is there anybody with Linux to try run "php -a" and tell us how to >> send typed code to execution? > > You just type it in and hit Enter. There is no trick. And without > libreadline there really is no point. Maybe you have another PHP-CLI then m

[PHP-WIN] Re: PHP console (php.exe -a)

2009-12-28 Thread Carsten Wiedmann
Am 27.12.2009 23:44, schrieb Sascha Meyer: >> | echo $a.PHP_EOL; >> | >> Nothing happens on Windows at this point. The cursor is in the next line >> waiting for input. But, if I now enter "^C", I can see the result: >> | 6 >> | >> | # >> So on Windows the whole code/input is executed at once and no

[PHP-WIN] Re: PHP console (php.exe -a)

2009-12-28 Thread Carsten Wiedmann
Am 28.12.2009 13:47, schrieb Pierre Joye: > 2009/12/27 Libor : >> Hi all, >> I don't know if I am stupid or what but I can't find out how to send typed >> code to execute. > > As far as I remember the interactive mode never got ported to windows. OK, but as you can read in my other Mail, it's wor

[PHP-WIN] Re: PHP console (php.exe -a)

2009-12-30 Thread Carsten Wiedmann
Am 30.12.2009 11:56, schrieb Richard Quadling: > As mentioned, CTRL+Z is the END-OF-TEXT character needed to terminate > input from STDIN. ctrl-z signals end-of-file. On *nix that's ctrl-d (ctrl-z on *nix is for job control). > [2009/12/30 10:56:09] [C:\] [] >php -v > PHP 5.3.2-dev (cli) (built:

[PHP-WIN] Re: PHP console (php.exe -a)

2009-12-30 Thread Carsten Wiedmann
Am 30.12.2009 12:12, schrieb Richard Quadling: >> Specifically, autoload functions, though registered (either by having >> __autoload() or by using spl_autoload_register()), are not invoked for >> missing classes. >> >> So, for windows, what's the point of the interactive mode? > > [2009/12/30 11: