# FormatShowObject
**Repository Path**: aboc/FormatShowObject
## Basic Information
- **Project Name**: FormatShowObject
- **Description**: 直观显示对象、数组的键值深度
- **Primary Language**: PHP
- **License**: Apache-2.0
- **Default Branch**: master
- **Homepage**: None
- **GVP Project**: No
## Statistics
- **Stars**: 1
- **Forks**: 0
- **Created**: 2016-11-23
- **Last Updated**: 2022-08-12
## Categories & Tags
**Categories**: Uncategorized
**Tags**: None
## README
README
### 格式化输出显示对象、数组的维度,便于定位
一般情况下我们使用php的print_r或者时var_export打印的时候,输出的数组效果如下:
如果我们找到某个值,想得知它依次的键值的话,则没有一个好的方法,现在我们使用FormatShowObject,则可以很方便的知道所属的键值
#####使用方法如下
```php
$format = new FormatShowObject();
$format->show($array);
```