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 function smarty_block_mtcommentstrip( $args, $content, $ctx, $repeat ) { $begin ..
Decoded Output download
<?php
function smarty_block_mtcommentstrip( $args, $content, $ctx, $repeat ) {
$begin = preg_quote( '<!--', '/' );
$end = preg_quote( '-->', '/' );
$content = preg_replace( "/$begin/", '', $content );
$content = preg_replace( "/$end/", '', $content );
return $content;
}
?>
Did this file decode correctly?
Original Code
<?php
function smarty_block_mtcommentstrip( $args, $content, $ctx, $repeat ) {
$begin = preg_quote( '<!--', '/' );
$end = preg_quote( '-->', '/' );
$content = preg_replace( "/$begin/", '', $content );
$content = preg_replace( "/$end/", '', $content );
return $content;
}
?>
Function Calls
None |
Stats
MD5 | 797ca97e6501719bfd5b099411abf476 |
Eval Count | 0 |
Decode Time | 99 ms |