Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ $d = ['web' => [ 'id' => 1, 'url' => 'houdunwang.com' ]];
(new \houdunwang\arr\Arr())->get($d,'web.url');
```

#### 排队字段获取数据
#### 排除字段获取数据
以下代码获取除 id、url以外的数据

```
Expand Down
2 changes: 1 addition & 1 deletion src/Arr.php
Original file line number Diff line number Diff line change
Expand Up @@ -416,7 +416,7 @@ public function get(array $data, $key, $value = null)
}

/**
* 排队字段获取数据
* 排除字段获取数据
*
* @param array $data 数据
* @param array $extName 排除的字段
Expand Down