Base64在线编码解码实现代码 演示与下载

2015-01-24信息快讯网

最近遇到的几个程序的加密方式都是Base64加密,很是晕菜,临时整了个在线转换,但是也不全部能搞定,呵呵也许还有不行的,希望对后来人有所帮助。

在线演示地址:
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> 
请输入转换的地址: 
<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>
php提示Call-time pass-by-reference has been deprecated in的解决方法[已测]
iis下php mail函数的sendmail配置方法(官方推荐)
php 的加密函数 md5,crypt,base64_encode 等使用介绍
PHP新手用的Insert和Update语句构造类
PHP中SESSION使用中的一点经验总结
MySQL的FIND_IN_SET函数使用方法分享
PHP中register_globals参数为OFF和ON的区别(register_globals 使用详解)
PHP语言中global和$GLOBALS[]的分析 之二
php中global和$GLOBALS[]的分析之一
php addslashes及其他清除空格的方法是不安全的
php中可能用来加密字符串的函数[base64_encode、urlencode、sha1]
PHP警告Cannot use a scalar value as an array的解决方法
PHP隐形一句话后门,和ThinkPHP框架加密码程序(base64_decode)
PHP日期处理函数 整型日期格式
DEDE采集大师官方留后门的删除办法
PHP strncasecmp字符串比较的小技巧
《PHP编程最快明白》第四讲:日期、表单接收、session、cookie
php empty,isset,is_null判断比较(差异与异同)
PHP isset()与empty()的使用区别详解
php中使用ExcelFileParser处理excel获得数据(可作批量导入到数据库使用)
php下关于Cannot use a scalar value as an array的解决办法
在PHP中实现Javascript的escape()函数代码
破解图片防盗链的代码(asp/php)测试通过
PHP 多维数组排序(usort,uasort)
php+mysql事务rollback&commit示例
php google或baidu分页代码
PHP 配置open_basedir 让各虚拟站点独立运行
PHP 配置文件中open_basedir选项作用
©2014-2024 dbsqp.com