PHP MD5 Implementation




?php
$str = 'apple';
if (md5($str) === '1f3870be274f6c49b3e31a0c6728957f')
{
echo md5($str); exit;
}
?>