????JFIF??x?x????'
Server IP : 79.136.114.73 / Your IP : 3.144.7.9 Web Server : Apache/2.4.7 (Ubuntu) PHP/5.5.9-1ubuntu4.29 OpenSSL/1.0.1f System : Linux b8009 3.13.0-170-generic #220-Ubuntu SMP Thu May 9 12:40:49 UTC 2019 x86_64 User : www-data ( 33) PHP Version : 5.5.9-1ubuntu4.29 Disable Function : pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority, MySQL : ON | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : ON | Pkexec : ON Directory : /proc/self/root/home/b8009/php-5.6.22/ext/standard/tests/strings/ |
Upload File : |
--TEST-- Test convert_cyr_string() function : error conditions --FILE-- <?php /* Prototype : string convert_cyr_string ( string $str , string $from , string $to ) * Description: Convert from one Cyrillic character set to another * Source code: ext/standard/string.c */ $str = "hello"; $from = "k"; $to = "d"; $extra_arg = 10; echo "*** Testing convert_cyr_string() : error conditions ***\n"; echo "\n-- Testing convert_cyr_string() function with no arguments --\n"; var_dump( convert_cyr_string() ); echo "\n-- Testing convert_cyr_string() function with no 'to' character set --\n"; var_dump( convert_cyr_string($str, $from) ); echo "\n-- Testing convert_cyr_string() function with more than expected no. of arguments --\n"; var_dump( convert_cyr_string($str, $from, $to, $extra_arg) ); echo "\n-- Testing convert_cyr_string() function with invalid 'from' character set --\n"; var_dump(bin2hex( convert_cyr_string($str, "?", $to) )); echo "\n-- Testing convert_cyr_string() function with invalid 'to' character set --\n"; var_dump(bin2hex( convert_cyr_string($str, $from, "?")) ); echo "\n-- Testing convert_cyr_string() function with invalid 'from' and 'to' character set --\n"; var_dump(bin2hex( convert_cyr_string($str, ">", "?")) ); ?> ===DONE=== --EXPECTF-- *** Testing convert_cyr_string() : error conditions *** -- Testing convert_cyr_string() function with no arguments -- Warning: convert_cyr_string() expects exactly 3 parameters, 0 given in %s on line %d NULL -- Testing convert_cyr_string() function with no 'to' character set -- Warning: convert_cyr_string() expects exactly 3 parameters, 2 given in %s on line %d NULL -- Testing convert_cyr_string() function with more than expected no. of arguments -- Warning: convert_cyr_string() expects exactly 3 parameters, 4 given in %s on line %d NULL -- Testing convert_cyr_string() function with invalid 'from' character set -- Warning: convert_cyr_string(): Unknown source charset: ? in %s on line %d string(10) "68656c6c6f" -- Testing convert_cyr_string() function with invalid 'to' character set -- Warning: convert_cyr_string(): Unknown destination charset: ? in %s on line %d string(10) "68656c6c6f" -- Testing convert_cyr_string() function with invalid 'from' and 'to' character set -- Warning: convert_cyr_string(): Unknown source charset: > in %s on line %d Warning: convert_cyr_string(): Unknown destination charset: ? in %s on line %d string(10) "68656c6c6f" ===DONE===