Automattic\Jetpack\Device_Detection
User_Agent_Info::is_Nintendo_3DS()
Detects if the current browser is Nintendo 3DS handheld.
Example: Mozilla/5.0 (Nintendo 3DS; U; ; en) Version/1.7498.US can differ in language, version and region
Method of the class: User_Agent_Info{}
No Hooks.
Return
null
. Nothing (null).
Usage
$result = User_Agent_Info::is_Nintendo_3DS();
User_Agent_Info::is_Nintendo_3DS() User Agent Info::is Nintendo 3DS code WPSCache 1.12.4
public static function is_Nintendo_3DS() { if ( empty( $_SERVER['HTTP_USER_AGENT'] ) ) { return false; } $ua = strtolower( wp_unslash( $_SERVER['HTTP_USER_AGENT'] ) ); // phpcs:ignore WordPress.Security.ValidatedSanitizedInput.InputNotSanitized -- This is validating. if ( strpos( $ua, 'nintendo 3ds' ) !== false ) { return true; } return false; }