PHP3,PHP4,ASP運行速度測試

來源:互聯網
上載者:User
速度 PHP3,PHP4,ASP運行速度測試

測試硬體說明:
測試使用的是我的愛機,配置如下:
CPU:C433
記憶體:128M
硬碟:酷魚2代20G

測試軟體說明:
WIN32下用的是windows nt server4,sp5,apache 1.3.12,php3.0.15和php4rc1,iis4
linux下用的是bluepoint linux1.0, apache 1.3.12, php4rc1

測試代碼說明:
我們用的是一個高強度的迴圈來測試速度。
設定了一個初始值counter=1
一個100*100*100次迴圈,最內層迴圈中 counter++
因為在IIS下,後來配置PHP4以ISAPI方式運行出錯,所以沒有測試結果。

測試代碼:

php程式如下:
<?php
$counter=1;
set_time_limit(300);
$begin_time=time();
for ($i=1;$i<=100;$i++)
  for ($j=1;$j<=100;$j++)
    for ($k=1;$k<=100;$k++)
            $counter++;
$end_time=time();
echo "begin time:".$begin_time."<BR>";
echo "<BR>end time:".$end_time."<BR>";
$total=$end_time-$begin_time;
echo "total spent time:".$total;
?>

asp程式如下:
<%
counter=1
begin_time=time()
for i=1 to 100
    for j=1 to 100
        for k=1 to 100
            counter=counter+1
        next
    next
next
end_time=time()
response.write(begin_time)
response.write("<p>")
response.write(end_time)
%>

各個環境下的測試結果

環境:win32+apache+php4
結果:3秒

環境:win32+apache+php3
結果:19秒

環境:win32+iis4+asp
結果:4秒

環境:win32+iis4+php3
結果:30秒

環境:win32+iis4+php4(CGI)
結果:3秒

環境:win32+iis4+php4(ISAPI)
結果:無

環境:linux+apache+php4
結果:4秒

結論:
誰說ASP比PHP快很多了?根據我的測試結果似乎差不多嘛。當然PHP4在ZEND的加速下,效能比PHP3提升了很多。
只是讓我不明白的是,在LINUX下的測試結果竟然比WIN32下還要慢一秒!
至於大家都提到的JSP,因為我沒有安裝,所以也就測試不起來了。不過以後我會去裝一個的,到時再將測試結果給大家吧。


相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.