0byt3m1n1
Path:
C:
/
BACKUPS
/
IDCARD-backup
/
id Code
/
vendor1
/
mpdf
/
mpdf
/
src
/
Utils
/
[
Home
]
File: 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); } }