0

Is it possible to convert a PHP PHAR file to an executable application?

Paul Roub
  • 36,322
  • 27
  • 84
  • 93

1 Answers1

0

There is multiple ways to do this :

  • .bat file that executes your PHAR file

OR

  • Write a program with a compiled language (C, C++ etc.) that executes your PHAR (via system commands) file and compile it
LP154
  • 1,467
  • 9
  • 16