Function Module_admin->_keyword_match
Definitions
adminzone/pages/modules/admin.php
- See if a string matches one of the keywords.
- Visibility: public
- Is abstract?: No
- Is static?: No
- Is final?: No
- Returns: bool
Parameters
| Name | Type | Passed by reference? | Variadic? | Default | Set | Range | Description |
|---|---|---|---|---|---|---|---|
| $t | ?string | No | No | required parameter | N/A | N/A | Search string (null: came in null for whatever reason) |
Returns
- Whether there is a match
- Type: boolean
- Set: N/A
- Range: N/A
Preview
Code (PHP)
/**
* See if a string matches one of the keywords.
*
* @param ?string $t Search string (null: came in null for whatever reason)
* @return boolean Whether there is a match
*/
public function _keyword_match(?string $t) : bool
* See if a string matches one of the keywords.
*
* @param ?string $t Search string (null: came in null for whatever reason)
* @return boolean Whether there is a match
*/
public function _keyword_match(?string $t) : bool

