1<?php 2 3namespace Mpdf\Utils; 4 5class NumericString 6{ 7 8 public static function containsPercentChar($string) 9 { 10 return strstr($string, '%'); 11 } 12 13 public static function removePercentChar($string) 14 { 15 return str_replace('%', '', $string); 16 } 17 18} 19