VersionPress\Storages\Serialization\IniSerializer::unescapeString PHP Method

unescapeString() private static method

The opposite to escapeString(), called when INI strings are restored back to arrays. Again, the only char that needs special handling is the double quotation mark.
private static unescapeString ( $str ) : mixed
$str
return mixed
    private static function unescapeString($str)
    {
        $str = str_replace('\\\\', '\\', $str);
        $str = str_replace('\\"', '"', $str);
        return $str;
    }