Create New Item
Item Type
File
Folder
Item Name
Search file in folder and subfolders...
Are you sure want to rename?
peripherad
/
vendor
/
mpdf
/
mpdf
/
src
/
Utils
:
NumericString.php
Advanced Search
Upload
New Item
Settings
Back
Back Up
Advanced Editor
Save
<?php namespace Mpdf\Utils; class NumericString { public static function containsPercentChar($string) { return strstr($string, '%'); } public static function removePercentChar($string) { return str_replace('%', '', $string); } }