-3

你好吗?我有一个网站,我有一些网站管理员工具。我有 PHP base64 的解码器和编码器。这些工具来自外部网站…… 我使用 iframe。但是不专业。我不是 php 专业人士,但我希望在我的网站上拥有这样的工具……我只需要表单代码和 php 代码即可获取 uncode 或代码 base64。有人可以帮我解决这个问题吗?

问候,亚历克斯

4

2 回答 2

2

PHP内置了base64。玩得开心:)

http://php.net/manual/en/function.base64-encode.php

http://www.php.net/manual/en/function.base64-decode.php

于 2013-03-14T04:42:49.990 回答
1

我刚做了这个;它工作简单。

<?php
//this is a first-draft, untested
$encode = $_POST['encode'];
$decode = $_POST['decode'];
?>
<html>
<head>
<title>
Awesome Base64 Transcoder
</title>
</head>
<body>
<form action="" method="POST">
To encode: <input type="text" name="encode" value="<?php echo base64_decode($decode);?>">
<input type="submit" value="Encode">
</form>
<br />
<form action="" method="POST">
To decode: <input type="text" name="decode" value="<?php echo base64_encode($encode);?>">
<input type="submit" value="Decode">
</form>
</body>
于 2013-03-14T04:50:27.613 回答