Xinu

php 模拟js escape函数处理字符串
function escape($str) { return str_replace('\\', '%',...
扫描右侧二维码阅读全文
27
2018/04

php 模拟js escape函数处理字符串

function escape($str)
{
    return str_replace('\\', '%', substr(json_encode($str), 1, -1));
}
function unescape($str)
{
    return json_decode('"' . str_replace('%', '\\', $str) . '"');
}

php 模拟js escape函数处理字符串

Last modification:April 27th, 2018 at 05:42 pm

Leave a Comment