facebook twitter hatena line email

Php/速度改善/おすすめコード置換

提供: 初心者エンジニアの簡易メモ
移動: 案内検索

環境

centos5, php5.3.6

おすすめコード置換

()内はレスポンスタイム減少率

  • else if → elseif (85.583%

http://net-beta.net/ubench/index.php?t=if1

  • array_unique() → array_keys(array_flip()) (8.523%

http://net-beta.net/ubench/index.php?t=array11

  • intval() → (int) (36.604%

http://net-beta.net/ubench/index.php?t=cast1