?? GreyFile — Mystic File Browser

Current path: home/webdevt/www/wdp/wp-content/plugins/complianz-gdpr/assets/vendor/mpdf/mpdf/src/Utils/



?? Go up: /home/webdevt/www/wdp/wp-content/plugins/complianz-gdpr/assets/vendor/mpdf/mpdf/src

?? Viewing: NumericString.php

<?php

namespace Mpdf\Utils;

class NumericString
{

	public static function containsPercentChar($string)
	{
		return strstr($string, '%');
	}

	public static function removePercentChar($string)
	{
		return str_replace('%', '', $string);
	}

}


??

??