| Server IP : 198.244.165.102 / Your IP : 216.73.216.218 [ Web Server : nginx/1.24.0 System : Linux modovh-ub-01 6.8.0-138-generic #138-Ubuntu SMP PREEMPT_DYNAMIC Fri Jul 31 22:41:49 UTC 2026 x86_64 User : colleary ( 1011) PHP Version : 8.3.23 Disable Function : NONE Domains : 2 Domains MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : ON | Pkexec : OFF Directory : /var/www/oliver-lynch/public_html/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();
}
}