User45648
User45648

Reputation: 103

Run a file .exe in Laravel

I am working on a test driving project, about driving theory test. I have some files which are .exe about crossroads priority ilustartions. Is there any way in Laravel to open this kind of files in a Laravel Project. Thanks in advance!

Upvotes: 0

Views: 2944

Answers (1)

René Höhle
René Höhle

Reputation: 27295

There are some possibilities. You can use very simple the exec functions in PHP. Or you can use

https://symfony.com/doc/current/components/process.html

The process component from Symfony to abstract that process. I think there are some more libs that can handle that but the process component is very good.

Upvotes: 3

Related Questions