Server IP : 162.213.251.212 / Your IP : 3.145.1.49 [ Web Server : LiteSpeed System : Linux business55.web-hosting.com 4.18.0-553.lve.el8.x86_64 #1 SMP Mon May 27 15:27:34 UTC 2024 x86_64 User : allssztx ( 535) PHP Version : 8.1.31 Disable Function : NONE Domains : 1 Domains MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : OFF | Pkexec : OFF Directory : /home/allssztx/www/jollyprecast/wp-content/plugins/image-optimization/classes/ |
Upload File : |
<?php namespace ImageOptimization\Classes; if ( ! defined( 'ABSPATH' ) ) { exit; // Exit if accessed directly. } class Locale { private $original_locale; public function set_utf_locale( int $category = LC_CTYPE ) { setlocale( $category, 'en_US.UTF-8' ); } public function get_locale( int $category = LC_CTYPE ) { return setlocale( $category, 0 ); } public function reset_to_original( int $category = LC_CTYPE ) { return setlocale( $category, $this->original_locale ); } public function __construct() { $this->original_locale = $this->get_locale(); } }