0

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

Paul Roub
  • 35,848
  • 27
  • 79
  • 88

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,469
  • 11
  • 16