|
-
Nov 11th, 2007, 12:23 PM
#1
Thread Starter
Fanatic Member
[RESOLVED] PHP and executables
wossy had just said in another thread that he programs with PHP...
Is it possible to get a fully functioning executable out of php, or does it have to be on a web server, "doing things" (I know, how vague can you get, eh?).
Or is it possibly you have to run it through some kind of interpeter on the computer (offline - not connected to the internet)?
I'm just curious that's all.
-
Nov 11th, 2007, 12:26 PM
#2
Re: PHP and executables
You can make command line applications in PHP but they're still interpreted.
If you want to boost performance you can use an opcode cache. This changes the execution model from interpretation to JIT-compilation, more like Java or .NET. These are generally used on web servers.
Some people have made compilers for PHP. There is no official one.
-
Nov 11th, 2007, 03:48 PM
#3
Thread Starter
Fanatic Member
Re: PHP and executables
OK then. Cheers for the info.
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|