AD 楼底!


 本站承接关于电脑与网络的各项业务;

|网吧维护|网站建设|网站推广|数据恢复|域名空间|虚拟主机|网络安全|
|网络组建|软件开发|企业邮局|电脑销售|电脑维修|数据恢复|网络工程|

|QQ:88188891|tel:山东:13953705379北京:13910595499

Base64在线编码解码UTF-8与gb2312两个版本

最近遇到的几个程序的加密方式都是Base64加密,很是晕菜,临时整了个在线转换,
但是也不全部能搞定,呵呵也许还有不行的,希望对后来人有所帮助;
演示地址(UTF-8 )如下:
http://blog.gemin.com.cn/tool/base64/base64-utf8.php

演示地址(gb2312)如下:
http://blog.gemin.com.cn/tool/base64/base64-gb2312.php


UTF-8 代码如下:
复制保存为PHP格式即可;


<?php
header('Content-Type: text/html; charset=utf-8');
$txt1 = stripslashes(trim( @$_POST['text1']));
$button = @$_POST['button'];
$down = @trim($_GET['down']);
if ($down==1) {
        header("Content-type: command");
        header("Content-Disposition: attachment; filename=base64_decode.txt");
        $contents = file_get_contents(basename($_SERVER['PHP_SELF']));
        echo $contents;
        exit;
        }
?>
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<meta content="Base64在线编码解码" name="keywords">
<title>Base64在线编码解码 UTF-8</title>
<style>
P {  
FONT-SIZE: 9pt;
line-height:150%;
width:50%;
BORDER:#DDDDDD 1px solid;
padding:5px 5px 5px 5px;text-align:justify;
   }  
A {
text-decoration: none;
font-size:9pt;
color:blue
   }
A:hover {
COLOR: red;
TEXT-DECORATION: underline
   }  
h1 {
font-size:12pt;
text-align:center;
margin-top:30px;
font-family: 微软雅黑, msyh, Tahoma, Helvetica, sans-serif;
   }
.bginput, select {
  color:#000000;
  vertical-align:middle;
  padding:2px;
  border:1px solid #BAC0C3;
  background:#F9FBFD;
}
.button {
  vertical-align:middle;
  padding:1px 3px 0px 3px;
  background:#F3F4F5;
  border:1px solid #B7C0C7;
  margin:0px;
  width:180px;
}
div {
width:100%;
  }
</style>
</head>
  
<body topmargin="0" leftmargin="0" rightmargin="0" bottommargin="0">
<table border="0" width="100%" cellspacing="0" cellpadding="0" height="100%">
<tr><td height="20" bgcolor="#CCCCCC" align =right style="padding-right:5px;">
</td></tr><tr><td valign="top" align =center>

<form name="form1" method="post" action="">
<h1>Base64在线编码解码 UTF-8 <a href="?down=1">源码下载</a></h1>
<p>
请输入转换的地址:
  <textarea name="text1" rows="14" class="bginput" style="width:520px;"><?php echo htmlspecialchars($txt1,ENT_QUOTES);?></textarea>  
  <br>
请选择转换的方式:
<textarea rows="14" class="bginput" style="width:520px;"><?php
if($button=="编码") echo base64_encode($txt1);
if($button=="解码") echo mb_convert_encoding(base64_decode($txt1),"UTF-8","gb2312");
?>
</textarea>
<br>
</p>
<input type="submit" name="button" class="button" value="编码" />
<input type="submit" name="button" class="button" value="解码" /><br>
</form>
</td></tr>
<tr><td height="10"></td></tr><tr><td height="20" bgcolor="#CCCCCC" align=center></td>
</tr>
</table>
</body>
</html>

UTF-8在线转换
-----------------------------------------------------------------------------------------------
gb2312代码如下:
复制保存为PHP格式即可;


<?php
header('Content-Type: text/html; charset=gb2312');
$txt1 = stripslashes(trim( @$_POST['text1']));
$button = @$_POST['button'];
$down = @trim($_GET['down']);
if ($down==1) {
        header("Content-type: command");
        header("Content-Disposition: attachment; filename=base64_decode.txt");
        $contents = file_get_contents(basename($_SERVER['PHP_SELF']));
        echo $contents;
        exit;
        }
?>
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
<meta content="Base64在线编码解码" name="keywords">
<title>Base64在线编码解码 gb2312</title>
<style>
P {  
FONT-SIZE: 9pt;
line-height:150%;
width:50%;
BORDER:#DDDDDD 1px solid;
padding:5px 5px 5px 5px;text-align:justify;
   }  
A {
text-decoration: none;
font-size:9pt;
color:blue
   }
A:hover {
COLOR: red;
TEXT-DECORATION: underline
   }  
h1 {
font-size:12pt;
text-align:center;
margin-top:30px;
font-family: 微软雅黑, msyh, Tahoma, Helvetica, sans-serif;
   }
.bginput, select {
  color:#000000;
  vertical-align:middle;
  padding:2px;
  border:1px solid #BAC0C3;
  background:#F9FBFD;
}
.button {
  vertical-align:middle;
  padding:1px 3px 0px 3px;
  background:#F3F4F5;
  border:1px solid #B7C0C7;
  margin:0px;
  width:180px;
}
div {
width:100%;
  }
</style>
</head>
  
<body topmargin="0" leftmargin="0" rightmargin="0" bottommargin="0">
<table border="0" width="100%" cellspacing="0" cellpadding="0" height="100%">
<tr><td height="20" bgcolor="#CCCCCC" align =right style="padding-right:5px;">
</td></tr><tr><td valign="top" align =center>

<form name="form1" method="post" action="">
<h1>Base64在线编码解码 gb2312 <a href="?down=1">源码下载</a></h1>
<p>
请输入转换的地址:
  <textarea name="text1" rows="14" class="bginput" style="width:520px;"><?php echo htmlspecialchars($txt1,ENT_QUOTES);?></textarea>  
  <br>
请选择转换的方式:
<textarea rows="14" class="bginput" style="width:520px;"><?php
if($button=="编码") echo base64_encode($txt1);
if($button=="解码") echo mb_convert_encoding(base64_decode($txt1),"gb2312","UTF-8");
?>
</textarea>
<br>
</p>
<input type="submit" name="button" class="button" value="编码" />
<input type="submit" name="button" class="button" value="解码" /><br>
</form>
</td></tr>
<tr><td height="10"></td></tr><tr><td height="20" bgcolor="#CCCCCC" align=center></td>
</tr>
</table>
</body>
</html>

gb2312在线转换


[本日志由 晒太阳的蛤蟆 于 2010-05-26 08:35 PM 编辑]
文章来自: 本站原创
引用通告: 查看所有引用 | 我要引用此文章
Tags: Base64 编码 解码 UTF-8 gb2312 版本
相关日志:
评论: 1 | 引用: 0 | 查看次数: 5997
回复回复lovetide[2010-08-07 00:50 AM | del]
不懂 php,不过我觉得没必要分两个版本,合在一个版本里,然后加一个“字符集”的输入框,这样不仅仅支持 utf-8、gb18030/gbk/gb2312,其他任意字符集也可以支持(比如说:日文、韩文、繁体中文等等……)
回复来自 <a href=晒太阳的蛤蟆 的评论"/> 晒太阳的蛤蟆2010-08-08 09:21 AM 回复
阁下说的在理,不过在解密的时候有时候无法识别,所以只能分开,这样才好解密的,呵呵!
发表评论
昵 称:
密 码: 游客发言不需要密码.
内 容:
验证码: 验证码
选 项:
虽然发表评论不用注册,但是为了保护您的发言权,建议您注册帐号.
字数限制 1000 字 | UBB代码 开启 | [img]标签 关闭
AD 楼顶!