File tree 3 files changed +3
-3
lines changed
3 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -1298,7 +1298,7 @@ <h3>match</h3>
1298
1298
< p > < strong > Example:</ strong > Get all users whose name starts with "A".</ p >
1299
1299
1300
1300
< pre class ="example "> < code class ="php "> r\table('users')->filter(function($doc){
1301
- return $doc('name')->match ("^A");
1301
+ return $doc('name')->match_ ("^A");
1302
1302
})->run($conn)
1303
1303
</ code > </ pre >
1304
1304
Original file line number Diff line number Diff line change @@ -1628,7 +1628,7 @@ __Example:__ Get all users whose name starts with "A".
1628
1628
1629
1629
``` php
1630
1630
r\table('users')->filter(function($doc){
1631
- return $doc('name')->match ("^A");
1631
+ return $doc('name')->match_ ("^A");
1632
1632
})->run($conn)
1633
1633
```
1634
1634
Original file line number Diff line number Diff line change 418
418
1736c1631
419
419
< return doc('name')->match("^A")
420
420
---
421
- > return $doc('name')->match ("^A");
421
+ > return $doc('name')->match_ ("^A");
422
422
1888c1783
423
423
< ## [and](and/) ##
424
424
---
You can’t perform that action at this time.
0 commit comments