This repository was archived by the owner on Dec 6, 2024. It is now read-only.
File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed
Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff 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
You can’t perform that action at this time.
0 commit comments