Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

My goal is the speed up my PHP code. I was googling when i found Phalanger http://phalanger.codeplex.com/ .

Phalanger is an open-source PHP implementation introducing the PHP language into the family of compiled .NET languages. It provides PHP applications an execution environment that is fast and extremely compatible with the vast array of existing PHP code.

from their other site http://www.php-compiler.net/

Phalanger improves execution speed, safety and makes integration with existing PHP and .NET code very simple.

so i made a test whit the following code:

<?php
$time_start = microtime(true);
$j=0;
for($i=0;$i<400000;$i++)
    $j++;

echo $j."\n";
$time_end = microtime(true);
$time = $time_end - $time_start;
echo "Time: ".$time."\n";
sleep(5);
?>

the result on my (old) computer are: Time: 0.12532997131348 (PHP 5.4.3,Apache) Time: 0.2832031 (console application built by Phalanger 3.0)

So it makes more then 2 times slower! Can u confirm this or i just missing something?

ps.: does Phalanger make an actual C# source code from PHP? how can i see it?

share|improve this question
Just have a look at reverse-proxy and bytecode-cache (apc) first. There are only very few use-cases for something like Phalanger. – KingCrunch Oct 2 '12 at 10:05
Have a look at "hiphop php". It compiles php into C code. IIRC facebook uses it. – clentfort Oct 2 '12 at 10:14
to clenfort: looks promising.i have to look into it deeper. actually its C++ and not C – user1686999 Oct 2 '12 at 10:19

closed as too localized by Marcin Orlowski, Andrew Barber, Kemal Fadillah, KingCrunch, Eitan T Oct 2 '12 at 10:52

This question is unlikely to help any future visitors; it is only relevant to a small geographic area, a specific moment in time, or an extraordinarily narrow situation that is not generally applicable to the worldwide audience of the internet. For help making this question more broadly applicable, see the FAQ.