%PDF-1.5 %���� ºaâÚÎΞ-ÌE1ÍØÄ÷{òò2ÿ ÛÖ^ÔÀá TÎ{¦?§®¥kuµùÕ5sLOšuY
Server IP : 49.231.201.246 / Your IP : 216.73.216.149 Web Server : Apache/2.4.18 (Ubuntu) System : Linux 246 4.4.0-210-generic #242-Ubuntu SMP Fri Apr 16 09:57:56 UTC 2021 x86_64 User : root ( 0) PHP Version : 7.0.33-0ubuntu0.16.04.16 Disable Function : exec,passthru,shell_exec,system,proc_open,popen,pcntl_exec MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : ON | Pkexec : ON Directory : /proc/11585/cwd/html/old/plugins/system/rokbox/lib/phpQuery/compat/ |
Upload File : |
<?php // -- Multibyte Compatibility functions --------------------------------------- // http://svn.iphonewebdev.com/lace/lib/mb_compat.php /** * mb_internal_encoding() * * Included for mbstring pseudo-compatability. */ if (!function_exists('mb_internal_encoding')) { function mb_internal_encoding($enc) {return true; } } /** * mb_regex_encoding() * * Included for mbstring pseudo-compatability. */ if (!function_exists('mb_regex_encoding')) { function mb_regex_encoding($enc) {return true; } } /** * mb_strlen() * * Included for mbstring pseudo-compatability. */ if (!function_exists('mb_strlen')) { function mb_strlen($str) { return strlen($str); } } /** * mb_strpos() * * Included for mbstring pseudo-compatability. */ if (!function_exists('mb_strpos')) { function mb_strpos($haystack, $needle, $offset=0) { return strpos($haystack, $needle, $offset); } } /** * mb_stripos() * * Included for mbstring pseudo-compatability. */ if (!function_exists('mb_stripos')) { function mb_stripos($haystack, $needle, $offset=0) { return stripos($haystack, $needle, $offset); } } /** * mb_substr() * * Included for mbstring pseudo-compatability. */ if (!function_exists('mb_substr')) { function mb_substr($str, $start, $length=0) { return substr($str, $start, $length); } } /** * mb_substr_count() * * Included for mbstring pseudo-compatability. */ if (!function_exists('mb_substr_count')) { function mb_substr_count($haystack, $needle) { return substr_count($haystack, $needle); } }