Posts

Fix openssl encrypt decrypt [PHP]

Image
Warning: openssl_decrypt(): IV passed is only 12 bytes long, cipher expects an IV of precisely 16 bytes, padding with \0 in PATH_FILE on line LINE_N openssl_encrypt(): IV passed is only 12 bytes long, cipher expects an IV of precisely 16 bytes, padding with \0 in PATH_FILE on line LINE_N How to fix the errors Ensure your SALT  only using NUMBER ONLY  and Minimum length of SALT  is 12 . Ensure your PHP version is 7 or above That's how to fix openssl_encrypt() and openssl_decrypt() errors

Si montok 15.0b Anti Block No Ads

Image
Simontok 15.0b anti blocks tanpa iklan Download [zippyshare] Si montok no ads tanpa iklan mod anti block 15.0b

Membuat PHP argumen dengan '='

Image
Cara Membuat argumen PHP CLI dengan ' = ' ' --= ' Buat file php <?php function arguments($argv) { $_ARG = array(); foreach ($argv as $arg) { if (ereg('--([^=]+)=(.*)',$arg,$reg)) { $_ARG[$reg[1]] = $reg[2]; } elseif(ereg('-([a-zA-Z0-9])',$arg,$reg)) { $_ARG[$reg[1]] = 'true'; } } return $_ARG; } ?> Contoh penggunaan php myscript.php --user=nobody --password=secret -p --access="host=127.0.0.1 port=456" Output Array ( [user] => nobody [password] => secret [p] => true [access] => host=127.0.0.1 port=456 )