douxi3432 2015-06-28 00:28
浏览 62
已采纳

Php,undo mysql_real_escape_string

I really have the reason to reserve this function. I used to saved BINARY content to file, which was run by this function, so the content is something like

WA\0,\0\0\0\0\0\0„Cźw\\\0\0\0\0\0\0\0\0\0\0\0Q\0\0\0

so somehow I must reverse this function. I tried the stripslashes() function, now it looks better:

WA ,      „Cźw\           Q   

still corrupt. I even tried this one:

$search = array( "\0", "
", "", "\\", "\'", "\\", "\Z" );
$replace = array( "\x00", "
", "", "\"", "'", "\", \x1a" );
$a = str_replace($search, $replace, $a);

still no joy. How to restore the original binary data?

  • 写回答

1条回答 默认 最新

  • douwen1549 2015-06-28 01:29
    关注

    The trick is in properly escaping the sequences you want to replace. The following function should work.

    function un_mysql_real_escape_string( $data ) {
        return str_replace(
            array( '\0'  , '
    ', '', '\Z'  , '\"', '\\\'', '\\\\' ),
            array( "\x00", "
    ", "", "\x1a", '"' , '\''  , '\\'   ),
            $data
        );
    }
    

    Unit test for my unescape function.

    $data = '';
    foreach ( range(0, 255) as $dec ) {
        $data .= chr( $dec );
    }
    
    $data_escaped = mysql_real_escape_string( $data );
    var_dump( un_mysql_real_escape_string( $data_escaped ) === $data );
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

悬赏问题

  • ¥15 下图接收小电路,谁知道原理
  • ¥15 装 pytorch 的时候出了好多问题,遇到这种情况怎么处理?
  • ¥20 IOS游览器某宝手机网页版自动立即购买JavaScript脚本
  • ¥15 手机接入宽带网线,如何释放宽带全部速度
  • ¥30 关于#r语言#的问题:如何对R语言中mfgarch包中构建的garch-midas模型进行样本内长期波动率预测和样本外长期波动率预测
  • ¥15 ETLCloud 处理json多层级问题
  • ¥15 matlab中使用gurobi时报错
  • ¥15 这个主板怎么能扩出一两个sata口
  • ¥15 不是,这到底错哪儿了😭
  • ¥15 2020长安杯与连接网探