コード例 #1
0
 /**
  * analyze
  * @static
  * @param  string $string         UserAgent String]
  * @param  string $imageSize      Image Size(16 / 24)
  * @param  string $imagePath      Image Path
  * @param  string $imageExtension Image Description
  * @return UserAgent
  */
 public static function analyze($string, $imageSize = null, $imagePath = null, $imageExtension = null)
 {
     $class = new UserAgent();
     $imageSize === null || ($class->imageSize = $imageSize);
     $imagePath === null || ($class->imagePath = $imagePath);
     $imageExtension === null || ($class->imageExtension = $imageExtension);
     $class->analyze($string);
     return $class;
 }