Laravel 如何打印简单的数组
PHP中文网
PHP中文网 2017-05-16 16:54:55
0
2
469

laravel自带打印dd()输出有点看不懂

Collection {#279 ▼
  #items: array:7 [▼
    0 => Cate {#280 ▼
      +timestamps: false
      #guarded: array:1 [▶]
      #connection: null
      #table: null
      #primaryKey: "id"
      #perPage: 15
      +incrementing: true
      #attributes: array:5 [▶]
      #original: array:5 [▶]
      #relations: []
      #hidden: []
      #visible: []
      #appends: []
      #fillable: []
      #dates: []
      #dateFormat: null
      #casts: []
      #touches: []
      #observables: []
      #with: []
      #morphClass: null
      +exists: true
      +wasRecentlyCreated: false
    }
    1 => Cate {#281 ▶}
    2 => Cate {#282 ▶}
    3 => Cate {#283 ▶}
    4 => Cate {#284 ▶}
    5 => Cate {#285 ▶}
    6 => Cate {#286 ▶}
  ]
}

如何输出 print_r简单这样的数组?

[0] => Array
    (
        [id] => 1
        [pid] => 0
        [name] => 安徽省
        [son] => Array
            (
                [0] => Array
                    (
                        [id] => 3
                        [pid] => 1
                        [name] => 合肥市
                        [son] => Array
                            (
                                [0] => Array
                                    (
                                        [id] => 4
                                        [pid] => 3
                                        [name] => 长丰县
                                    )

                            )

                    )

                [1] => Array
                    (
                        [id] => 5
                        [pid] => 1
                        [name] => 安庆市
                    )

            )

    )

print_r打印输出 会出现这个多余的 如何简化?

Illuminate\Database\Eloquent\Collection Object
(
    [items:protected] => Array
        (
            [0] => kyomini\Cate Object
                (
                    [timestamps] => 
                    [guarded:protected] => Array
                        (
                            [0] => submit
                        )

                    [connection:protected] => 
                    [table:protected] => 
                    [primaryKey:protected] => id
                    [perPage:protected] => 15
                    [incrementing] => 1
                    [attributes:protected] => Array
                        (
                            [id] => 1
                            [pid] => 0
                            [c_name] => 文章
                            [byname] => 
                            [sort] => 0
                        )

                    [original:protected] => Array
                        (
                            [id] => 1
                            [pid] => 0
                            [c_name] => 文章
                            [byname] => 
                            [sort] => 0
                        )

                    [relations:protected] => Array
                        (
                        )

                    [hidden:protected] => Array
                        (
                        )

                    [visible:protected] => Array
                        (
                        )

                    [appends:protected] => Array
                        (
                        )

                    [fillable:protected] => Array
                        (
                        )

                    [dates:protected] => Array
                        (
                        )

                    [dateFormat:protected] => 
                    [casts:protected] => Array
                        (
                        )

                    [touches:protected] => Array
                        (
                        )
PHP中文网
PHP中文网

认证0级讲师

全部回复(2)
世界只因有你

http://php.net/manual/zh/function.var-export.php

http://php.net/manual/zh/function.var-dump.php

淡淡烟草味

print_r($obj->toarray());

热门教程
更多>
最新下载
更多>
网站特效
网站源码
网站素材
前端模板
关于我们 免责声明 Sitemap
PHP中文网:公益在线PHP培训,帮助PHP学习者快速成长!