Как определить Internet Explorer средствами php?
Категория: PHP
2011-08-28 20:01:03
Функция detect_ie возвращает истину, если пользователь использует Internet Explorer
Функция:code: #php
- <?php
- function detect_ie()
- {
- if (isset($_SERVER['HTTP_USER_AGENT']) &&
- (strpos($_SERVER['HTTP_USER_AGENT'], 'MSIE') !== false))
- return true;
- else
- return false;
- }
- ?>
code: #html
- <!-- function ae_detect_ie (see code above) is pasted here -->
- <?php if (detect_ie()) { ?>
- It seems, that your are using MSIE.
- Why not to switch to standard-complaint brower, like
- <a href="http://www.mozilla.com/firefox/">Firefox</a>?
- <?php } ?>
Поделиться: