doudou8783 2015-09-11 07:05
浏览 43
已采纳

在PHP中为数组添加值的最快方法是什么

I'm working on a project that has an Arr helper class and I am curious about something: Is there a benefit in doing this:

/**
 * Sets an array value
 *
 * @param array  $array
 * @param string $path
 * @param mixed  $value
 *
 * @return void
 */
public static function set(array &$array, $path, $value)
{
    $segments = explode('.', $path);
    while (count($segments) > 1) {
        $segment = array_shift($segments);
        if ( ! isset( $array[$segment] ) || ! is_array($array[$segment])) {
            $array[$segment] = [];
        }
        $array =& $array[$segment];
    }
    $array[array_shift($segments)] = $value;
}

Arr::set($data['stories'], 'fields.age', '3');

Over this:

$data['stories']['fields']['age'] = '3';

Or is there a better, faster way?

  • 写回答

1条回答 默认 最新

  • duanbiao4025 2015-09-11 07:28
    关注

    The function is just easier to type - you do not have to make so many brackets and quotation mark. It makes things easier.

    For performance: If you set the array values with normal syntax, it is faster, because you do not have to explode the path or check for existence before. But this takes not so many time.

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
编辑
预览

报告相同问题?

手机看
程序员都在用的中文IT技术交流社区

程序员都在用的中文IT技术交流社区

专业的中文 IT 技术社区,与千万技术人共成长

专业的中文 IT 技术社区,与千万技术人共成长

关注【CSDN】视频号,行业资讯、技术分享精彩不断,直播好礼送不停!

关注【CSDN】视频号,行业资讯、技术分享精彩不断,直播好礼送不停!

客服 返回
顶部