You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
> **Note:** Using `get()` on a non-existing value will throw an [Exception\AccessException](exception-introduction.md#exceptionaccessexception). Use `has()` or `getKeys()` to check if a value exists.
104
118
119
+
The `get()` method has support for dot-notated keys:
120
+
121
+
```php
122
+
var_dump($document->get('meta.info'));
123
+
```
124
+
125
+
This returns:
126
+
127
+
```php
128
+
string(28) "Testing the JSON API Client."
129
+
```
130
+
105
131
### Get the containing data as array
106
132
107
133
You can get all data as an array using the `asArray()` method.
0 commit comments