Ошибка проверки кодированного скрипта
Я пытаюсь это <?php /* read the PHP source code */ $source_code = file_get_contents("hello.php"); $source_code = preg_replace('#^<\?php\s+#', '', $source_code); $source_code = preg_replace('#\s+\?>\s*$#', '', $source_code); /* create the encrypted version */ $redistributable_key = blenc_encrypt($source_code, "encrypt.php", "my_fixed_password"); $key_file = __DIR__ ."\keys"; file_put_contents($key_file, $redistributable_key . "\n", FILE_APPEND); include 'encrypt.php'; echo $hello; ?> hello.php <?php $hello = "Ciao"; Я […]