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 /** * Calculate Levenshtein distance between two strings * * @phpstub * * @par..
Decoded Output download
<?php
/**
* Calculate Levenshtein distance between two strings
*
* @phpstub
*
* @param string $str1
* @param string $str2
*
* @return int
*/
function levenshtein($str1, $str2)
{
}
/**
* Calculate Levenshtein distance between two strings
*
* @phpstub
*
* @param string $str1
* @param string $str2
* @param int $cost_ins
* @param int $cost_rep
* @param int $cost_del
*
* @return int
*/
function levenshtein($str1, $str2, $cost_ins, $cost_rep, $cost_del)
{
} ?>
Did this file decode correctly?
Original Code
<?php
/**
* Calculate Levenshtein distance between two strings
*
* @phpstub
*
* @param string $str1
* @param string $str2
*
* @return int
*/
function levenshtein($str1, $str2)
{
}
/**
* Calculate Levenshtein distance between two strings
*
* @phpstub
*
* @param string $str1
* @param string $str2
* @param int $cost_ins
* @param int $cost_rep
* @param int $cost_del
*
* @return int
*/
function levenshtein($str1, $str2, $cost_ins, $cost_rep, $cost_del)
{
}
Function Calls
None |
Stats
MD5 | 5e298d3c38963a71b1b426bfb1ff5d05 |
Eval Count | 0 |
Decode Time | 80 ms |