Find this useful? Enter your email to receive occasional updates for securing PHP code.
Signing you up...
Thank you for signing up!
PHP Decode
--TEST-- Bug #25745 (ctype functions fail with non-ascii characters) --EXTENSIONS-- ctype ..
Decoded Output download
--TEST--
Bug #25745 (ctype functions fail with non-ascii characters)
--EXTENSIONS--
ctype
--INI--
error_reporting=E_ALL&~E_DEPRECATED
--FILE--
<?php
$funcs = array(
"ctype_alnum", "ctype_alpha", "ctype_cntrl", "ctype_digit",
"ctype_graph", "ctype_lower", "ctype_print", "ctype_punct",
"ctype_space", "ctype_upper", "ctype_xdigit"
);
foreach ($funcs as $ctype_func) {
for ($i = 0; $i < 256; $i++) {
$a = $ctype_func($i);
$b = $ctype_func(chr($i));
if ($a != $b) {
echo "broken... $ctype_func($i) = $a, $ctype_func(chr($i)) = $b
";
exit;
}
}
}
echo "ok
";
?>
--EXPECT--
ok
Did this file decode correctly?
Original Code
--TEST--
Bug #25745 (ctype functions fail with non-ascii characters)
--EXTENSIONS--
ctype
--INI--
error_reporting=E_ALL&~E_DEPRECATED
--FILE--
<?php
$funcs = array(
"ctype_alnum", "ctype_alpha", "ctype_cntrl", "ctype_digit",
"ctype_graph", "ctype_lower", "ctype_print", "ctype_punct",
"ctype_space", "ctype_upper", "ctype_xdigit"
);
foreach ($funcs as $ctype_func) {
for ($i = 0; $i < 256; $i++) {
$a = $ctype_func($i);
$b = $ctype_func(chr($i));
if ($a != $b) {
echo "broken... $ctype_func($i) = $a, $ctype_func(chr($i)) = $b\n";
exit;
}
}
}
echo "ok\n";
?>
--EXPECT--
ok
Function Calls
ctype_alnum | 1 |
Stats
MD5 | 41617662c9190be286167847df9f27c5 |
Eval Count | 0 |
Decode Time | 108 ms |