Skip to content
This repository was archived by the owner on Dec 6, 2024. It is now read-only.

Commit 5f833d3

Browse files
committed
Fixing the operator in README's block of code
1 parent cde0d48 commit 5f833d3

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ $sName = A::get($post, 'user/basicInformation/name');
6262
$sSurname = A::get($post, 'user/basicInformation/surname');
6363

6464
// with default value
65-
$sLocale = A:get($post, 'user/locale', 'Europe/Dublin');
65+
$sLocale = A::get($post, 'user/locale', 'Europe/Dublin');
6666

6767
```
6868

@@ -75,7 +75,7 @@ $aUser = array();
7575
$sName = $aUser['user']['basicInformation']['name'] = 'Mathias Grimm';
7676
// ===================================================================
7777

78-
// ArrayPath
78+
// ArrayPath
7979
$aUser = array();
8080
$sName = A::set($aUser, 'user/basicInformation/name', 'Mathias');
8181
```
@@ -100,7 +100,7 @@ if (array_key_exists('user', (array) $aUser)) {
100100

101101
// ===================================================================
102102

103-
// ArrayPath
103+
// ArrayPath
104104
$bExists = A::exists($aUser, 'user/basicInformation/name');
105105
```
106106

@@ -119,7 +119,7 @@ if (isset($aUser['user']['basicInformation']['name'])) {
119119
$sName = A::remove($aUser, 'user/basicInformation/name');
120120
```
121121

122-
Example 5 (Using a custom separator)
122+
Example 5 (Using a custom separator)
123123
------------------------------------
124124
```php
125125
<?php

0 commit comments

Comments
 (0)