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.
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
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
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
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:
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: