SCRIPT ENCODE DAN DECODE
SCRIPT ENCODE DAN DECODE
Contoh script-script php
1. Script Encode dan Decode
<?php
$plaintext = 'Ini Blogrecodek.blogspot.co.id';
//encode plaintext
$encode = base64_encode($plaintext);
//decode plaintext
$decode = base64_decode($encode);
echo "text = ".$plaintext. "<br/>";
echo "text yang diencode = ". $encode. "<br/>";
echo "text yang didecode = ".$decode;
?>
Hasilnya :
1. Script Encode dan Decode
<?php
$plaintext = 'Ini Blogrecodek.blogspot.co.id';
//encode plaintext
$encode = base64_encode($plaintext);
//decode plaintext
$decode = base64_decode($encode);
echo "text = ".$plaintext. "<br/>";
echo "text yang diencode = ". $encode. "<br/>";
echo "text yang didecode = ".$decode;
?>
Hasilnya :
text = Ini Blogrecodek.blogspot.co.id
text yang diencode =SW5pIEJsb2dyZWNvZGVrLmJsb2dzcG90LmNvLmlk
text yang didecode =Ini Blogrecodek.blogspot.co.id
text yang diencode =SW5pIEJsb2dyZWNvZGVrLmJsb2dzcG90LmNvLmlk
text yang didecode =Ini Blogrecodek.blogspot.co.id
2.
Script Hashing
Contoh hashing pada MD5
<?php
// buat variabel kata dengan nilai heru
$kata = 'heru';
// buat variabel hashing dengan nilai md5 dari variabel kata.
$hashing = md5($kata);
// tampilkan nilai variabel hashing
echo $hashing;
// kode ini akan menghasilkan
output a648ab9a3e32c5f3f6e9ddbd41c0530f
?>
Hasilnya
:
a648ab9a3e32c5f3f6e9ddbd41c0530f
Tidak ada komentar:
Posting Komentar