![]() |
PHP compiler
Is there any good PHP compiler ?
anybody have any idea of the benchmarks of a compiled PHP script Vs C++ cgi ? |
I'm looking for something like this ... but it's not ready yet.
If you?ve ever wondered if it possible to convert a PHP script into an executable program for a specific operating system then you aren?t alone. A number of projects which do just that were announced on the list this week. BinaryPHP is a tool than can convert a PHP script to C++ source code that can be compiled with a standard C++ compiler. A ?proof of concept? release is available for download at the web site. John Coggeshall has been working on a Zend module tentatively called PASM, the Php AsseMbler. His web site contains some preliminary information about the project, with a download expected to be available sometime soon. Link |
If the goal is to hide source code, u should look into PHP encoders. Zend has a good one.
|
Quote:
that ... but mostly execution speed. |
PHP runs in threads. If you make standalone php executables, they will create new processes each time they run, just like cgi. That is more resource consuming.
|
right, but still C++ is way less resources consuming than PHP... I need to right a cgi that will be called 300 000 times a day. Do you really think it's a option to code it in PHP ?
|
Quote:
|
Quote:
|
Quote:
300k daily is nothing though, there are sites doing well over a million a day powered by php+mysql backends. |
Quote:
|
I don't understand ... a compiled application is faster and less resources consuming.
but you guys doesn't seems to think so ... I wonder why. (but I value very much your opinion) |
Quote:
To say that C++ is always better than PHP wouldn't be right. I love C++ and I loathe PHP but sometimes PHP is better suited to a particular job. |
As stated above, a TGP scipt in ANY language should not be generating the entire page from the database on every page view. It should instead generate a static HTML file every time there are changes to it. That being said, if you absolutely need to serve each page dynamically, adding something like the Zend performance suite, or their new product, Canaveral, will help a lot.
|
Just compiling anything so that it is an executable does not make anything faster. If its written shitty its written shitty.
I bet a compiled version of PHP is simply the php parsed piggy-backing the script(s) and running them in-memory. Even if it is not that, it still all goes through PHP functions. Learn C if you want to code something as fast as C. |
ok basically I want to do a TGP script (in PHP) that collect A LOT of informations on what my surfers do on my site. I want to monitor everything so I'll be able to send targeted traffic, adjust my sponsors etc.
So I want to make everything possible in javascript with cookies to use the surfer computer power as possible. On the onClose event I'll send all the info collected to a script on my server, which should be in C++ (I think, to insert the info in my DB). But I'm not sure of the reliability of such technology (since some ppl disable Javascript and cookies) |
Quote:
|
Quote:
with that being said, i agree with you, if it is effiency he is after C/C++ are amoung his few options. |
|
Quote:
|
Quote:
Don't worry for me. I'll get thru. It's just that I haven't planned everything yet so some concept are still blury ... Sorry but it's frustrating that you think I'm overhead with all the qualifications I have ... I know it's not your fault, but still ... |
des qu'on parle pas anglais parfaitement, ils pensent qu'on ne sait pas de quoi on parle.. ne t'en fait pas. :glugglug
|
Quote:
|
Sounds like you're working forwards and trying to anticipate everything... why not just work backwards? Try it using plain old PHP, and see if it works. Refine further.
Using javascript and the onClose event will probably be caught by most popup blockers. As long as you have a dedicated server with decent specs you shouldn't run into load problems. One of mine has about 150k site loads/320k clicks going through a PHP script daily. 12:39PM up 24 days, 11:33, 1 user, load averages: 0.07, 0.14, 0.15 |
Quote:
For the Javascript, that's what I'm afraid off ... but on the other hand I can't use a PHP script each and every time somebody click somewhere... |
Quote:
|
Quote:
If you think my question are about really basic stuff well you might not have understood correctly what I wrote. Most likely to be me who haven't explain correctly what I meat... |
Quote:
If you run into load issues with plain PHP then you can upgrade to Zend, which compiles the script to pseudocode so it doesn't need to be parsed for each load. I believe it also does some other funky tricks like caching. The catch is that it will cost $$$. |
Quote:
I guess I'll post it again. http://turck-mmcache.sourceforge.net/index_old.html free and faster than Zend. |
Quote:
|
Quote:
Look very interresting ! Thanks a lot |
Quote:
Sorry Lane, but I must have been living under a rock, or actually just don't use much PHP code. But I was under the assumption that the source code (PHP lines) was NOT readable in a browser? |
Quote:
|
All times are GMT -7. The time now is 07:33 AM. |
Powered by vBulletin® Version 3.8.8
Copyright ©2000 - 2025, vBulletin Solutions, Inc.
©2000-, AI Media Network Inc123