mirror of
https://github.com/Karaka-Management/Resources.git
synced 2026-01-11 21:38:39 +00:00
19 lines
244 B
PHP
Executable File
19 lines
244 B
PHP
Executable File
<?php
|
|
|
|
namespace Mpdf\Utils;
|
|
|
|
class NumericString
|
|
{
|
|
|
|
public static function containsPercentChar($string)
|
|
{
|
|
return strstr($string, '%');
|
|
}
|
|
|
|
public static function removePercentChar($string)
|
|
{
|
|
return str_replace('%', '', $string);
|
|
}
|
|
|
|
}
|