%PDF- %PDF-
| Direktori : /home/vacivi36/consentimento/assets/vendor/mpdf/mpdf/src/Utils/ |
| Current File : /home/vacivi36/consentimento/assets/vendor/mpdf/mpdf/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);
}
}