Create New Item
Item Type
File
Folder
Item Name
Search file in folder and subfolders...
Are you sure want to rename?
anisogamete
/
wp-content
/
plugins
/
loco-translate
/
src
/
compat
:
CtypeExtension.php
Advanced Search
Upload
New Item
Settings
Back
Back Up
Advanced Editor
Save
<?php /** * Placeholder for missing PHP "ctype" extension. */ abstract class Loco_compat_CtypeExtension { public static function digit( $value ){ return 1 === preg_match('/^[0-9]+$/',$value); } } // @codeCoverageIgnoreStart if( ! function_exists('ctype_digit') ){ function ctype_digit( $value ){ return Loco_compat_CtypeExtension::digit( $value ); } }