Files
doitinpoland.com/wp-content/plugins/sitepress-multilingual-cms/classes/utilities/class-wpml-encoding-validation.php
2023-09-12 21:41:04 +02:00

16 lines
341 B
PHP

<?php
class WPML_Encoding_Validation {
const MIN_CHAR_SIZE = 26;
/**
* @param string $string
*
* @return int
*/
public function is_base64( $string ) {
return self::MIN_CHAR_SIZE < strlen( $string ) && preg_match_all( '#^([A-Za-z0-9+/]{4})*([A-Za-z0-9+/]{4}|[A-Za-z0-9+/]{3}=|[A-Za-z0-9+/]{2}==)$#', $string, $matches );
}
}