ascvh@#%(^-^)V ?host,ip,port,protocol,title,domain,country,city,link,org ???à JFIF  x x ?? C         ?? C   ?à   " ??     ?? μ  } !1AQa "q2?‘?#B±áR?e$3br? %&'()*456789:CDEFGHIJSTUVWXYZcdefghijstuvwxyz??…???‰?’“”?–—???¢£¤¥|§¨?a23′μ?·?1o??????èéêòó???×?ùúáa?????èéê?òó???÷?ùú??     ?? μ   w !1AQ aq"2?B‘?±á #3Rebr?{ gilour

File "sanitizer.php"

Full Path: /home/zcziejy/ryadselyen/plugins/seo_1766648493/includes/sanitizer.php
File size: 542 bytes
MIME-type: text/x-php
Charset: utf-8

<?php

// Exits if accessed directly.
if ( ! defined( 'ABSPATH' ) ) exit;

/**
 * YM Fast SEO class providing sanitation methods.
 */
class YMFSEO_Sanitizer {
	/**
	 * Sanitizes text field.
	 * 
	 * @param string $value Text value.
	 * 
	 * @return string Sanitized string.
	 */
	public static function sanitize_text_field ( string $value ) : string {
		$value = wp_unslash( $value );

		$value = wp_kses_post( $value );

		$value = normalize_whitespace( $value );

		$value = trim( $value );

		return $value;
	}
}