php 高效能書寫

來源:互聯網
上載者:User
從.NET轉去做PHP4年了,最近開始追求高效能了~~
所以開始覺得是時候要寫寫部落格了~
來段發現物先~
複製代碼 代碼如下:
$arr = array(
'attr1' => 1 ,
'attr2' => 1 ,
'attr3' => 1 ,
);
$startTime = microtime( true );
for( $i = 0 ; $i < 1000 ; $i++ )
{
if( isset( $arr['attr1'] ) )
{

}
if( isset( $arr['attr2'] ) )
{

}
if( isset( $arr['attr3'] ) )
{

}
}
$endTime = microtime( true );
printf( "%d us.\n" , ( $endTime - $startTime ) * 1000000 );
$startTime = microtime( true );
for( $i = 0 ; $i < 1000 ; $i++ )
{
foreach( $arr as $key => $value )
{
switch( $key )
{
case 'attr1':
break;
case 'attr2':
break;
case 'attr3':
break;
}
}
}
$endTime = microtime( true );
printf( "%d us.\n" , ( $endTime - $startTime ) * 1000000 );

上面一段代碼
輸出結果是
us.
us.
然而,怎麼看都是第一段比第二段繁瑣,而且結構沒有第二段清晰,
那麼為什麼第一段會比第二段執行快了這麼多呢
我們可以看到第一段的代碼中,只有3個if,
那麼第二段會有多少個呢。
我們拆開了switch這個東西,可以去看看他的基本實現原理。
如果switch中,每一段case中都是使用break;結束的話,
其實這個switch好比多個if{}else if{}

所以從這個機制,我們就可以把的
複製代碼 代碼如下:
foreach( $arr as $key => $value )
{
switch( $key )
{
case 'attr1':
break;
case 'attr2':
break;
case 'attr3':
break;
}
}

轉換成
複製代碼 代碼如下:
foreach( $arr as $key => $value )
{
if( $key == 'attr1' )
{

}
else if( $key == 'attr2' )
{

}
else if( $key == 'attr3' )
{

}
}


去理解,
從這裡就可以看到,第二段代碼會因應數組中的鍵的個數去不停地作出判斷次數為1+2+3的判斷,所以變成了第一段代碼判斷次數是3,而第二段代碼判斷次數是6次


所以就導致了執行效率相差了接近一倍的速度。

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在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.