getPatterns() публичный Метод

Gets some possible patterns that have to be matched against the user agent. With the given user agent string, we can optimize the search for potential patterns: - We check the first characters of the user agent (or better: a hash, generated from it) - We compare the length of the pattern with the length of the user agent (the pattern cannot be longer than the user agent!)
public getPatterns ( string $userAgent ) : Generator
$userAgent string
Результат Generator
Пример #1
0
 /**
  *
  */
 public function testGetPatterns()
 {
     $result = $this->object->getPatterns('Mozilla/5.0 (compatible; Ask Jeeves/Teoma*)');
     self::assertInstanceOf('Generator', $result);
 }