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