����JFIF��x�x����'
Server IP : 78.140.185.180 / Your IP : 216.73.216.168 Web Server : LiteSpeed System : Linux cpanel13.v.fozzy.com 4.18.0-513.11.1.lve.el8.x86_64 #1 SMP Thu Jan 18 16:21:02 UTC 2024 x86_64 User : builderbox ( 1072) PHP Version : 7.3.33 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : OFF | Pkexec : OFF Directory : /home/builderbox/www/vendor/mobiledetect/mobiledetectlib/namespaced/Detection/ |
Upload File : |
<?php /** * Little piece of PHP to make Mobile_Detect auto-loadable in PSR-0 compatible PHP autoloaders like * the Symfony Universal ClassLoader by Fabien Potencier. Since PSR-0 handles an underscore in * classnames (on the filesystem) as a slash, "Mobile_Detect.php" autoloaders will try to convert * the classname and path to "Mobile\Detect.php". This script will ensure autoloading with: * - Namespace: Detection * - Classname: MobileDetect * - Namespased: \Detection\MobileDetect * - Autoload path: ./namespaced * - Converted path: ./namespaced/Detection/MobileDetect.php * * Don't forget to use MobileDetect (instead of Mobile_Detect) as class in code when autoloading. * * Thanks to @WietseWind. * For details please check: https://github.com/serbanghita/Mobile-Detect/pull/120 */ namespace Detection; require_once dirname(__FILE__) . DIRECTORY_SEPARATOR . '..' . DIRECTORY_SEPARATOR . '..' . DIRECTORY_SEPARATOR . 'Mobile_Detect.php'; class MobileDetect extends \Mobile_Detect {}