You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
550 B
16 lines
550 B
<?php
|
|
namespace app\core\utils;
|
|
|
|
class Request {
|
|
public static function metaData($ciObj) {
|
|
return [
|
|
'ip_address' => $ciObj->input->ip_address(),
|
|
'platform' => $ciObj->agent->platform(),
|
|
'agent' => $ciObj->agent->is_browser()
|
|
? $ciObj->agent->browser().' '.$ciObj->agent->version()
|
|
: $ciObj->agent->is_robot()
|
|
? $agent = $ciObj->agent->robot()
|
|
: $agent = $ciObj->agent->mobile()
|
|
];
|
|
}
|
|
}
|