����JFIF��x�x����'
Server IP : 66.29.137.217 / Your IP : 18.191.28.161 Web Server : LiteSpeed System : Linux premium294.web-hosting.com 4.18.0-513.11.1.lve.el8.x86_64 #1 SMP Thu Jan 18 16:21:02 UTC 2024 x86_64 User : gltevjme ( 1095) PHP Version : 7.0.33 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : OFF | Pkexec : OFF Directory : /home/./gltevjme/bofirm.gltechlimited.com/vendor/ua-parser/uap-php/src/Util/ |
Upload File : |
<?php /** * ua-parser * * Copyright (c) 2011-2012 Dave Olsen, http://dmolsen.com * * Released under the MIT license */ namespace UAParser\Util; use Composer\CaBundle\CaBundle; use UAParser\Exception\FetcherException; class Fetcher { private $resourceUri = 'https://raw.githubusercontent.com/ua-parser/uap-core/master/regexes.yaml'; /** @var resource */ private $streamContext; public function __construct($streamContext = null) { if (is_resource($streamContext) && get_resource_type($streamContext) === 'stream-context') { $this->streamContext = $streamContext; } else { $this->streamContext = stream_context_create( [ 'ssl' => [ 'verify_peer' => true, 'verify_depth' => 10, 'cafile' => CaBundle::getSystemCaRootBundlePath(), static::getPeerNameKey() => 'www.github.com', 'disable_compression' => true, ] ] ); } } public function fetch() { $level = error_reporting(0); $result = file_get_contents($this->resourceUri, false, $this->streamContext); error_reporting($level); if ($result === false) { $error = error_get_last(); throw FetcherException::httpError($this->resourceUri, $error['message'] ?? 'Undefined error'); } return $result; } public static function getPeerNameKey(): string { return version_compare(PHP_VERSION, '5.6') === 1 ? 'peer_name' : 'CN_match'; } }