1
我想將二進制文件翻譯爲文本並返回到表單中,但在Google或其他位置找不到任何示例。將二進制文件翻譯爲文本並返回
我想讓這樣的事情 http://www.roubaixinteractive.com/PlayGround/Binary_Conversion/Binary_To_Text.asp
我發現這個代碼,同時搜索,但我不能得到它的工作:#
<script type="text/javascript">
//<![CDATA[
function txt2bin()
{
url = 'http://services.webestools.com/txt2bin/txt2bin.js?str='+encodeURIComponent($('ftxt').value);
var js_effets=document.createElement("script");
js_effets.setAttribute("type", "text/javascript");
js_effets.setAttribute("src", url);
document.getElementsByTagName("script")[0].parentNode.insertBefore(js_effets,document.getElementsByTagName("script")[0]);
$('frm').style.display='block';
}
function bin2txt()
{
url = 'http://services.webestools.com/txt2bin/bin2txt.js?str='+encodeURIComponent($('fbin').value);
var js_effets=document.createElement("script");
js_effets.setAttribute("type", "text/javascript");
js_effets.setAttribute("src", url);
document.getElementsByTagName("script")[0].parentNode.insertBefore(js_effets,document.getElementsByTagName("script")[0]);
$('frm').style.display='block';
}
//]]>
</script>
嗯,我想做到這一點在PHP,因爲我知道一點PHP的,我什麼都不知道在Javascript中:P – Marco
我試圖讓我的代碼工作,但我無法得到它的工作原理:# http://jsfiddle.net/bhEyf/ – Marco
http://jsfiddle.net/bhEyf/1/ 我還會將示例翻譯爲PHP – Roman