当前位置: 移动技术网 > IT编程>开发语言>PHP > Base64在线编码解码实现代码 演示与下载

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

2019年04月24日  | 移动技术网IT编程  | 我要评论
在线演示地址:
gb2312版本
utf8版本
复制代码 代码如下:

<?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>

如对本文有疑问, 点击进行留言回复!!

相关文章:

验证码:
移动技术网