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?