0byt3m1n1
Path:
C:
/
Users
/
Administrator
/
Desktop
/
shafna
/
Number edit
/
id
/
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); } }