ascvh@#%(^-^)V ?host,ip,port,protocol,title,domain,country,city,link,org ???à JFIF x x ?? C ?? C ?à " ?? ?? μ } !1AQa "q2?‘?#B±áR?e$3br? %&'()*456789:CDEFGHIJSTUVWXYZcdefghijstuvwxyz??…???‰?’“”?–—???¢£¤¥|§¨?a23′μ?·?1o??????èéêòó???×?ùúáa?????èéê?òó???÷?ùú?? ?? μ w !1AQ aq"2?B‘?±á #3Rebr?{
File "CtypeExtension.php"
Full Path: /home/zcziejy/ryadselyen/src/compat/CtypeExtension.php
File size: 391 bytes
MIME-type: text/x-php
Charset: utf-8
<?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 );
}
}