Core::isRequestExists( $key, $default = null, $type = null )
Check if the given request isset
Description
Source
File: bp-integrations/learndash/core/Core.php
public function isRequestExists( $key, $default = null, $type = null ) {
if ($type) {
return isset($$type[$key]);
}
$merged = array_merge($_GET, $_POST, $_REQUEST);
return isset($merged[$key]);
}
Changelog
| Version | Description |
|---|---|
| BuddyBoss 1.0.0 | Introduced. |
Questions?
We're always happy to help with code or other questions you might have! Search our developer docs, contact support, or connect with our sales team.