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
Copy file name to clipboardExpand all lines: README.md
+4-3Lines changed: 4 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -76,13 +76,14 @@ foreach($results->results as $result) {
76
76
}
77
77
```
78
78
79
-
### Function calls
79
+
### Functions
80
80
81
-
To search for function calls, use the `functions` method before calling `search`.
81
+
To search for function calls or definitions, use the `functions` method. Regular expressions can be used by surrounding the name with slashes `/`, i.e. `/test\d+/`.
82
82
83
83
```php
84
+
// this will search for references AND definitions for 'strtolower' and 'myfunc'
0 commit comments