Automattic\Jetpack\Device_Detection
User_Agent_Info::is_ie_browser()
Detect Edge browser
Метод класса: User_Agent_Info{}
Хуков нет.
Возвращает
null
. Ничего (null).
Использование
$result = User_Agent_Info::is_ie_browser();
Код User_Agent_Info::is_ie_browser() User Agent Info::is ie browser WPSCache 1.12.4
public static function is_ie_browser() { if ( empty( $_SERVER['HTTP_USER_AGENT'] ) ) { return false; } $ua = wp_unslash( $_SERVER['HTTP_USER_AGENT'] ); // phpcs:ignore WordPress.Security.ValidatedSanitizedInput.InputNotSanitized -- This is validating. if ( false === ( strpos( $ua, 'MSIE' ) || strpos( $ua, 'Trident/7' ) ) ) { return false; } return true; }