| Server IP : 172.173.179.141 / Your IP : 216.73.216.196 Web Server : Apache System : Linux mail.lomejor.cr 6.8.0-1059-azure #65~22.04.1-Ubuntu SMP Thu May 28 16:59:19 UTC 2026 x86_64 User : www-data ( 33) PHP Version : 8.2.31 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : OFF | Perl : OFF | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : /var/www/bamagocr/wp-content/plugins/cloudflare/src/ |
Upload File : |
<?php
namespace Cloudflare\APO;
use Cloudflare\APO\Vendor\Symfony\Polyfill\Intl\Idn as p;
if ( ! defined( 'IDNA_DEFAULT' ) ) {
define( 'IDNA_DEFAULT', 0 );
}
if ( ! defined( 'INTL_IDNA_VARIANT_UTS46' ) ) {
define( 'INTL_IDNA_VARIANT_UTS46', 1 );
}
/**
* Helper class for environments that do not have the intl extension installed.
* When the intl extension is no installed, the functions will use the symfony/polyfill-intl-idn package.
*/
class IntlUtil {
/**
* Wrapper for idn_to_ascii
*
* @param mixed $domain
* @param mixed $flags
* @param mixed $variant
* @param mixed $idna_info
* @return string|bool
*/
public static function idn_to_ascii( $domain, $flags = IDNA_DEFAULT, $variant = INTL_IDNA_VARIANT_UTS46, &$idna_info = null ) {
if ( function_exists( 'idn_to_ascii' ) ) {
return idn_to_ascii( $domain, $flags, $variant, $idna_info );
} else {
return p\Idn::idn_to_ascii( $domain, $flags, $variant, $idna_info );
}
}
/**
* Wrapper for idn_to_utf8
*
* @param mixed $domain
* @param mixed $flags
* @param mixed $variant
* @param mixed $idna_info
* @return bool|string
*/
public static function idn_to_utf8( $domain, $flags = IDNA_DEFAULT, $variant = INTL_IDNA_VARIANT_UTS46, &$idna_info = null ) {
if ( function_exists( 'idn_to_utf8' ) ) {
return idn_to_utf8( $domain, $flags, $variant, $idna_info );
} else {
return p\Idn::idn_to_utf8( $domain, $flags, $variant, $idna_info );
}
}
}