Skip to content

Commit

Permalink
Merge pull request kokonior#91 from rozaqiw/patch-1
Browse files Browse the repository at this point in the history
Create rozaqiwt
  • Loading branch information
kokonior authored Oct 2, 2021
2 parents e5c3597 + 9b8cc42 commit cee0395
Showing 1 changed file with 22 additions and 0 deletions.
22 changes: 22 additions & 0 deletions rozaqiwt
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
// Belajar Obfuscate PHP

Tujuan :
1. Supaya Script/source code tidak ditampilkan apa adanya (supaya ditampilkan dalam bentuk enkripsi)
2. Supaya script tidak ditiru ataupun dimodifikasi tanpa seizin pembuat source codenya

example

Encode :

<?php

$en=base64_encode("Belajar Menyembunyikan kode php");
echo $en;

?>

Decode :

<?php
eval(base64_decode('QmVsYWphciBNZW55ZW1idW55aWthbiBrb2RlIHBocA=='));
?>

0 comments on commit cee0395

Please sign in to comment.