Home  >  Article  >  Backend Development  >  向php数组添加元素的方法哪种更高效

向php数组添加元素的方法哪种更高效

WBOY
WBOYOriginal
2016-06-06 20:51:07982browse

目前看到用的比较多的是两种方法,分别是

$arr = array();

// 第一种
array_push($arr, 'test');

// 第二种
$arr[] = 'test';

这两种方法哪个更高效呢?

回复内容:

目前看到用的比较多的是两种方法,分别是

$arr = array();

// 第一种
array_push($arr, 'test');

// 第二种
$arr[] = 'test';

这两种方法哪个更高效呢?

这个在php官方文档已经有说明了【如果用 array_push() 来给数组增加一个单元,还不如用 $array[] = ,因为这样没有调用函数的额外负担。】
http://php.net/manual/zh/function.arr...

一楼很好的回答了这个问题

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn