- 01
- 02
- 03
- 04
- 05
- 06
- 07
- 08
- 09
- 10
- 11
- 12
- 13
- 14
- 15
- 16
- 17
- 18
- 19
- 20
- 21
- 22
- 23
- 24
- 25
- 26
- 27
- 28
- 29
- 30
- 31
- 32
- 33
- 34
- 35
- 36
- 37
- 38
- 39
- 40
- 41
- 42
- 43
- 44
- 45
- 46
- 47
- 48
- 49
- 50
- 51
- 52
- 53
- 54
- 55
- 56
- 57
class Request_BrowserDetector
{
public static function singleton()
{
if (null === self::$_instance)
{
self::$_instance = new self;
}
return self::$_instance;
}
protected static $_instance = null;
public function __construct()
{
$this->_sigs = Application::singleton()->cfg('request.browser.signatures');
}
public function detect($str)
{
if (isset($this->_cache[$str]))
{
$out = $this->_cache[$str];
}
else
{
$notFound = true;
foreach ($this->_sigs as $k => $v)
{
if (false !== strpos($str, $k))
{
$out = $v;
$notFound = false;
break;
}
}
if ($notFound)
{
$out = $this->_escape($str);
}
$this->_cache[$str] = $out;
}
return $out;
}
protected function _escape($str)
{
return mysql_real_escape_string($str);
}
protected $_sigs, $_cache = array();
}
sectus 20.10.2010 10:20 # 0
telnet 20.10.2010 10:26 # 0
sectus 20.10.2010 10:29 # 0
telnet 20.10.2010 10:30 # 0
seonull 20.10.2010 10:32 # 0
telnet 20.10.2010 10:35 # 0
Lure Of Chaos 20.10.2010 16:48 # 0
seonull 21.10.2010 01:54 # 0
telnet 21.10.2010 06:53 # +3
...спустя два месяца, когда число комментов перевалило за 9000, раздался голос свыше: "ребята, да вы же написали Zend Framework!"