Find this useful? Enter your email to receive occasional updates for securing PHP code.
Signing you up...
Thank you for signing up!
PHP Decode
<?php $br = (php_sapi_name() == "cli")? "":"<br>"; if(!extension_loaded('roaring_bitmap')..
Decoded Output download
<?php
$br = (php_sapi_name() == "cli")? "":"<br>";
if(!extension_loaded('roaring_bitmap')) {
dl('roaring_bitmap.' . PHP_SHLIB_SUFFIX);
}
$module = 'roaring_bitmap';
$functions = get_extension_funcs($module);
echo "Functions available in the test extension:$br
";
if(!empty($functions)){
foreach($functions as $func) {
echo $func."$br
";
}
}
echo "$br
";
?>
Did this file decode correctly?
Original Code
<?php
$br = (php_sapi_name() == "cli")? "":"<br>";
if(!extension_loaded('roaring_bitmap')) {
dl('roaring_bitmap.' . PHP_SHLIB_SUFFIX);
}
$module = 'roaring_bitmap';
$functions = get_extension_funcs($module);
echo "Functions available in the test extension:$br\n";
if(!empty($functions)){
foreach($functions as $func) {
echo $func."$br\n";
}
}
echo "$br\n";
?>
Function Calls
php_sapi_name | 1 |
Stats
MD5 | 7e8c72d6d968fd283e677882e53c0231 |
Eval Count | 0 |
Decode Time | 82 ms |