duannengling4705 2009-02-18 04:28
浏览 76
已采纳

在PHP $ array [] = $ value或array_push($ array,$ value)中使用什么更好?

What's better to use in PHP for appending an array member:

$array[] = $value;

or

array_push($array, $value);

Though the manual says you're better off to avoid a function call, I've also read $array[] is much slower than array_push(). Does anyone have any clarifications or benchmarks?

  • 写回答

10条回答 默认 最新

  • doukeyong3746487 2009-02-18 04:33
    关注

    No benchmarks, but I personally feel like $array[] is cleaner to look at, and honestly splitting hairs over milliseconds is pretty irrelevant unless you plan on appending hundreds of thousands of strings to your array.

    Edit: Ran this code:

    $t = microtime(true);
    $array = array();
    for($i = 0; $i < 10000; $i++) {
        $array[] = $i;
    }
    print microtime(true) - $t;
    print '<br>';
    $t = microtime(true);
    $array = array();
    for($i = 0; $i < 10000; $i++) {
        array_push($array, $i);
    }
    print microtime(true) - $t;
    

    The first method using $array[] is almost 50% faster than the second one.

    Some benchmark results:

    Run 1
    0.0054171085357666 // array_push
    0.0028800964355469 // array[]
    
    Run 2
    0.0054559707641602 // array_push
    0.002892017364502 // array[]
    
    Run 3
    0.0055501461029053 // array_push
    0.0028610229492188 // array[]
    

    This shouldn't be surprising, as the PHP manual notes this:

    If you use array_push() to add one element to the array it's better to use $array[] = because in that way there is no overhead of calling a function.

    The way it is phrased I wouldn't be surprised if array_push is more efficient when adding multiple values. EDIT: Out of curiosity, did some further testing, and even for a large amount of additions, individual $array[] calls are faster than one big array_push. Interesting.

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
查看更多回答(9条)

报告相同问题?

悬赏问题

  • ¥15 js调用html页面需要隐藏某个按钮
  • ¥15 ads仿真结果在圆图上是怎么读数的
  • ¥20 Cotex M3的调试和程序执行方式是什么样的?
  • ¥20 java项目连接sqlserver时报ssl相关错误
  • ¥15 一道python难题3
  • ¥15 牛顿斯科特系数表表示
  • ¥15 arduino 步进电机
  • ¥20 程序进入HardFault_Handler
  • ¥15 关于#python#的问题:自动化测试
  • ¥20 问题请教!vue项目关于Nginx配置nonce安全策略的问题