Your IP : 216.73.216.40


Current Path : /var/www/html/mmishra/mpdf-development/src/Utils/
Upload File :
Current File : /var/www/html/mmishra/mpdf-development/src/Utils/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);
	}

}