|
| 1 | +# Dot - PHP dot notation array access |
| 2 | +Easy access to multidimensional arrays with dot notation. |
| 3 | +With dot notation, your code is cleaner and handling deeper arrays is super easy. |
| 4 | + |
| 5 | +This class implements PHP's ArrayAccess class, so Dot object can also be used same way as normal arrays but with dot notation. |
| 6 | + |
| 7 | +With Dot you can change this: |
| 8 | + |
| 9 | + echo $data['info']['home']['address']; |
| 10 | + |
| 11 | +to this: |
| 12 | + |
| 13 | + echo $data->get('info.home.address'); |
| 14 | + |
| 15 | +or even this: |
| 16 | + |
| 17 | + echo $data['info.home.address']; |
| 18 | + |
| 19 | +## Installation |
| 20 | + |
| 21 | +Via composer: |
| 22 | + |
| 23 | + composer require adbario/php-dot-notation |
| 24 | + |
| 25 | +Or just copy the class file Dot.php and handle namespace yourself. |
| 26 | + |
| 27 | +## Usage |
| 28 | + |
| 29 | +This array will be used as a reference on this guide: |
| 30 | + |
| 31 | + $array = [ |
| 32 | + 'user' => [ |
| 33 | + 'firstname' => 'John', |
| 34 | + 'lastname' => 'Smith' |
| 35 | + ], |
| 36 | + 'info' => [ |
| 37 | + 'kids' => [ |
| 38 | + 0 => 'Laura', |
| 39 | + 1 => 'Chris', |
| 40 | + 2 => 'Little Johnny' |
| 41 | + ], |
| 42 | + 'home' => [ |
| 43 | + 'address' => 'Rocky Road 3' |
| 44 | + ] |
| 45 | + ] |
| 46 | + ]; |
| 47 | + |
| 48 | +### Create Dot object |
| 49 | + |
| 50 | +To start without any data, just create a new Dot object: |
| 51 | + |
| 52 | + $data = new \AdBar\Dot; |
| 53 | + |
| 54 | +If you have an array already available, inject it to Dot object: |
| 55 | + |
| 56 | + $data = new \AdBar\Dot($array); |
| 57 | + |
| 58 | +Set data after creating Dot object: |
| 59 | + |
| 60 | + $data->setData($array); |
| 61 | + |
| 62 | +Set data as a reference, and all changes will be made directly to original array: |
| 63 | + |
| 64 | + $data->setDataAsRef($array); |
| 65 | + |
| 66 | +### Set value |
| 67 | + |
| 68 | +Set i.e. phone number in 'home' array: |
| 69 | + |
| 70 | + $data->set('info.home.tel', '09-123-456-789'); |
| 71 | + |
| 72 | + // Array style |
| 73 | + $data['info.home.tel'] = '09-123-456-789'; |
| 74 | + |
| 75 | +Set multiple values at once: |
| 76 | + |
| 77 | + $data->set([ |
| 78 | + 'user.haircolor' => 'blue', |
| 79 | + 'info.home.address' => 'Private Lane 1' |
| 80 | + ]); |
| 81 | + |
| 82 | +If value already exists, Dot will override it with new value. |
| 83 | + |
| 84 | +### Get value |
| 85 | + |
| 86 | + echo $data->get('info.home.address'); |
| 87 | + |
| 88 | + // Default value if path doesn't exist |
| 89 | + echo $data->get('info.home.country', 'some default value'); |
| 90 | + |
| 91 | + // Array style |
| 92 | + echo $data['info.home.address']; |
| 93 | + |
| 94 | +### Add value |
| 95 | + |
| 96 | + $data->add('info.kids', 'Amy'); |
| 97 | + |
| 98 | +Multiple values at once: |
| 99 | + |
| 100 | + $data->add('info.kids', [ |
| 101 | + 'Ben', 'Claire' |
| 102 | + ]); |
| 103 | + |
| 104 | +### Check if value exists |
| 105 | + |
| 106 | + if ($data->has('info.home.address')) { |
| 107 | + // Do something... |
| 108 | + } |
| 109 | + |
| 110 | + // Array style |
| 111 | + if (isset($data['info.home.address'])) { |
| 112 | + // Do something... |
| 113 | + } |
| 114 | + |
| 115 | +### Delete value |
| 116 | + |
| 117 | + $data->delete('info.home.address'); |
| 118 | + |
| 119 | + // Array style |
| 120 | + unset($data['info.home.address']); |
| 121 | + |
| 122 | +### Multiple values at once: |
| 123 | + |
| 124 | + $data->delete([ |
| 125 | + 'user.lastname', 'info.home.address' |
| 126 | + ]); |
| 127 | + |
| 128 | +### Clear values |
| 129 | + |
| 130 | +Delete all values from path: |
| 131 | + |
| 132 | + $data->clear('info.home'); |
| 133 | + |
| 134 | +If path doesn't exist, create an empty array on it |
| 135 | + |
| 136 | + $data->clear('info.home.rooms', true); |
| 137 | + |
| 138 | +Clear multiple paths at once: |
| 139 | + |
| 140 | + $data->clear([ |
| 141 | + 'user', 'info.home' |
| 142 | + ]); |
| 143 | + |
0 commit comments