php-wfio icon indicating copy to clipboard operation
php-wfio copied to clipboard

_wsystem and _wexec support

Open hfhchan opened this issue 10 years ago • 1 comments

Since PHP only has system(), it is impossible to run a command line that contains Unicode chars outside the current codepage. However, Windows apps actually run a command line that contains Unicode chars by using _wsystem() instead of system() in the Windows C Runtime Library.

I wonder if you could provide a wfio_system() function that is a UTF-8 accepting equivalent system() function for PHP? (This function would similarly need to convert UTF-8 to UTF-16 before calling _wsystem().)

It will be very much appreciated if both _wsystem and _wexec, as well as utf-8 versions of shell_exec and passthru, could be supported!

hfhchan avatar Jan 29 '15 18:01 hfhchan

Hi, thanks for detail feedback! I'll try to support them.

kenjiuno avatar Jan 30 '15 00:01 kenjiuno