| Server IP : 161.248.188.39 / Your IP : 216.73.216.53 Web Server : Apache System : Linux 161-248-188-39.cprapid.com 4.18.0-513.9.1.el8_9.x86_64 #1 SMP Sat Dec 2 05:23:44 EST 2023 x86_64 User : mysoftbd ( 1002) PHP Version : 8.2.32 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : ON | Pkexec : ON Directory : /home/mysoftbd/sphs1962.edu.bd/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();
}
}