在线时间:8:00-16:00
迪恩网络APP
随时随地掌握行业动态
扫描二维码
关注迪恩网络微信公众号
开源软件名称(OpenSource Name):hisorange/browser-detect开源软件地址(OpenSource Url):https://github.com/hisorange/browser-detect开源编程语言(OpenSource Language):PHP 99.9%开源软件介绍(OpenSource Introduction):hisorangeBrowser Detection v4.5 byEasy to use package to identify the visitor's browser details and device type. Magic is not involved the results are generated by multiple well tested and developed packages. Supporting every laravel version between 4.0 » 9.0, also tested on every PHP version between 5.6 » 8.1. How to installcomposer require hisorange/browser-detect Yep, it's ready to be used by You! ^.^ How to useIn Your code just call the Browser facade: use Browser;
// Determine the user's device type is simple as this:
Browser::isMobile();
Browser::isTablet();
Browser::isDesktop();
// Every wondered if it is a bot who loading Your page?
if (Browser::isBot()) {
echo 'No need to wonder anymore!';
}
// Check for common vendors.
if (Browser::isFirefox() || Browser::isOpera()) {
$response .= '<script src="firefox-fix.js"></script>';
}
// Sometime You may want to serve different content based on the OS.
if (Browser::isAndroid()) {
$response .= '<a>Install our Android App!</a>';
} elseif (Browser::isMac() && Browser::isMobile()) {
$response .= '<a>Install our iOS App!</a>';
} Even in Your blade templates: @mobile
<p>This is the MOBILE template!</p>
@include('your-mobile-template')
@endmobile
@tablet
<p>This is the TABLET template!</p>
<link rel="stylesheet" href="tablet.css" title="Reduce the page size, load what the user need">
@endtablet
@desktop
<p>This is the DESKTOP template!</p>
@enddesktop
{-- Every result key is supported --}
@browser('isBot')
<p>Bots are identified too :)</p>
@endbrowser Easy peasy, ain't it? Version supportThe following matrix is has been continuously tested by the great and awesome Github Actions!
Since 2013 the package runs tests on every possible PHP / Laravel version matrix. Standalone mode, without Laravel!Based on community requests; Now You can use the library without Laravel. Just simply use the Parser class as a static object. use hisorange\BrowserDetect\Parser as Browser;
if (Browser::isLinux()) {
// Works as well!
} Available API callsEvery call on the Browser facade is proxied to a result object, so the following information are available on Your result too, where You can use the [array] syntax to access them.
Configuration, personalizationIf You are using Laravel then after installation run the following command: // Will copy a config file to ~/app/config/browser-detect.php
php artisan vendor:publish For standalone mode to apply Your custom configuration: use hisorange\BrowserDetect\Parser;
$browser = new Parser(null, null, [
'cache' => [
'interval' => 86400 // This will overide the default configuration.
]
]);
$result = $browser->detect(); Since the package aims to be easy to use, there is not much to configure. But You can customize the cache and security values. Advanced Usage InformationThe code is designed to be an easy to use style, so every call You make on the Browser facade will access the result object and get the data for You, but You can parse agents other then the current user's. // When You call the detect function You will get a result object, from the current user's agent.
$result = Browser::detect();
// If You wana get browser details from a user agent other then the current user call the parse function.
$result = Browser::parse('Opera/9.80 (Windows NT 6.0) Presto/2.12.388 Version/12.14'); Worthy notion! The parser only parsing each user agent string once and then caches it, it uses an inmemory runtime cache for multiple calls in a single page load; And it will use the application's cache to persist the result for a week or so, this should provide You with a sufficient caching mechanism so the detection will cost less than 0.02 millisecond, this was tested with a 80,000 fake visit. CommunityAt the time of this writing, the library is getting closer to be 7 year old. I have implemented every user request which was feasable, and running out of ideas for the future. By this statement I am declaring this as the last feature release at version 4.2, from now on I will maintain compatibility with new Laravel and PHP versions, but not planning to do any new features. Thank You for your support over the years, and worry not, the library is stable, and has all the features You ever need. ~ Update on this :D No major features are added in the past months, but with the help of Raymund Ács we are patching and continuing the support for micro features and version ports. ChangelogSee the detailed changes in the CHANGELOG file. |
2023-10-27
2022-08-15
2022-08-17
2022-09-23
2022-08-13
请发表评论