Base64在線編碼解碼實現(xiàn)代碼 演示與下載
更新時間:2011年01月08日 00:24:44 作者:
最近遇到的幾個程序的加密方式都是Base64加密,很是暈菜,臨時整了個在線轉(zhuǎn)換,但是也不全部能搞定,呵呵也許還有不行的,希望對后來人有所幫助。
在線演示地址:
gb2312版本 http://tools.jb51.net/tools/base64_decode-gb2312.php
utf8版本 http://tools.jb51.net/tools/base64_decode-utf8.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>
請輸入轉(zhuǎn)換的地址:
<textarea name="text1" rows="14" class="bginput" style="width:520px;"><?php echo htmlspecialchars($txt1,ENT_QUOTES);?></textarea>
<br>
請選擇轉(zhuǎn)換的方式:
<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版本 http://tools.jb51.net/tools/base64_decode-gb2312.php
utf8版本 http://tools.jb51.net/tools/base64_decode-utf8.php
復(fù)制代碼 代碼如下:
<?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>
請輸入轉(zhuǎn)換的地址:
<textarea name="text1" rows="14" class="bginput" style="width:520px;"><?php echo htmlspecialchars($txt1,ENT_QUOTES);?></textarea>
<br>
請選擇轉(zhuǎn)換的方式:
<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>
相關(guān)文章
PHP設(shè)計模式之中介者模式(Mediator Pattern)入門與應(yīng)用案例詳解
這篇文章主要介紹了PHP設(shè)計模式之中介者模式(Mediator Pattern),結(jié)合實例形式詳細分析了PHP中介者模式的基本概念、原理、應(yīng)用案例與相關(guān)操作注意事項,需要的朋友可以參考下2019-12-12eWebEditor v3.8 商業(yè)完整版 (PHP)
eWebEditor v3.8 商業(yè)完整版 (PHP)...2006-12-12laravel 之 Eloquent 模型修改器和序列化示例
今天小編就為大家分享一篇laravel 之 Eloquent 模型修改器和序列化示例,具有很好的參考價值,希望對大家有所幫助。一起跟隨小編過來看看吧2019-10-10thinkphp使用literal防止模板標(biāo)簽被解析的方法
這篇文章主要介紹了thinkphp使用literal防止模板標(biāo)簽被解析的方法,可實現(xiàn)針對一些不需要解析的模板標(biāo)簽直接輸出,是非常實用的技巧,需要的朋友可以參考下2014-11-11