Report this

What is the reason for this report?

how to run native Windows app, like calc, notepad, using php?

Posted on May 1, 2015

I am using Windows 7 service pack 3. Hello guys! I want know how to run native Windows app, like calc, notepad, using php. Please help me!



This textbox defaults to using Markdown to format your answer.

You can type !ref in this text area to quickly search our full set of tutorials, documentation & marketplace offerings and insert the link!

These answers are provided by our Community. If you find them useful, show some love by clicking the heart. If you run into issues leave a comment, or add your own answer to help others.

I am going to assume that this question has nothing to do with DigitalOcean services since we do not offer a Windows OS option at this time. That being out of the way there are a couple ways to execute a command on the host system from within php though I am not sure how GUI applications will handle this on Windows as my experience with PHP is almost exclusively on Linux/FreeBSD hosts.

backticks:

`C:/path/to/app.exe`;

system:

system('C:/path/to/app.exe');

exec:

exec('C:/path/to/app.exe');

Ok. thanks.

The developer cloud

Scale up as you grow — whether you're running one virtual machine or ten thousand.

Get started for free

Sign up and get $200 in credit for your first 60 days with DigitalOcean.*

*This promotional offer applies to new accounts only.