public static function Server::in_uri in Anti Spam by CleanTalk 8.4
Same name and namespace in other branches
- 9.1.x src/lib/Cleantalk/Common/Variables/Server.php \Cleantalk\Common\Variables\Server::in_uri()
* Checks if $_SERVER['REQUEST_URI'] contains string * *
Parameters
string $needle: * * @return bool
File
- src/
lib/ Cleantalk/ Common/ Variables/ Server.php, line 61
Class
- Server
- Class Server Wrapper to safely get $_SERVER variables
Namespace
Cleantalk\Common\VariablesCode
public static function in_uri($needle) {
return self::has_string('REQUEST_URI', $needle);
}