File "NumericString.php"

Full Path: /home/clickysoft/public_html/jmapi5.clickysoft.net/vendor/mpdf/mpdf/src/Utils/NumericString.php
File size: 244 bytes
MIME-type: text/x-php
Charset: utf-8

<?php

namespace Mpdf\Utils;

class NumericString
{

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

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

}