Nasıl Kullanıcıların girişinden tersbölülerin silerim

0 Cevap php

Ben bu bir bulanıklık alıyorum: P

function escape($string)
{
    $string = stripslashes($string);

    if (function_exists('mysql_real_escape_string')) {
       return mysql_real_escape_string($string, $this->connection);
    } else {
        return mysql_escape_string($string);
    }
}

$content = '""""""test\'te%%%%st`test_huhu\'_';

echo '<br>output 1 = '.stripslashes($content);
echo '<br>output 2 = '.$db->escape($content);

Çıktı

output 1 =  """"""test'te%%%%st`test_huhu'_
output 2 =  \"\"\"\"\"\"test\'te%%%%st`test_huhu\'_ 

Nasıl output 2 output 1 ve neden output 2 gibi olmak? Gibi aynı olacaktır yapmak için

0 Cevap