php源代码加密了就安全了吗
1. 不安全2. 因为尽管对PHP源代码进行加密可以增加一定的安全性,但并不能完全保证代码的安全性。
加密只是增加了破解的难度,但并不能阻止有心人进行逆向工程和破解。
而且,一旦加密的源代码被解密,就会暴露给攻击者,从而导致安全风险。
3. 为了提高PHP代码的安全性,除了加密源代码外,还应采取其他安全措施,如输入验证、防止SQL注入、使用安全的编程实践等。
此外,定期更新和修复漏洞也是保持代码安全的重要步骤。
php7代码如何加密
我们先写出函数:
<?php
function encode_file_contents($filename) {
$type=strtolower(substr(strrchr($filename,'.'),1));
if ('php' == $type && is_file($filename) && is_writable($filename)) { //
如果是PHP文件 并且可写 则进行压缩编码
$contents = file_get_contents($filename); // 判断文件是否已经被编码处
理
$contents = php_strip_whitespace($filename);
// 去除PHP头部和尾部标识
$headerPos = strpos($contents,'<?php');
$footerPos = strrpos($contents,'?>');
$contents = substr($contents, $headerPos + 5, $footerPos -
$headerPos);
$encode = base64_encode(gzdeflate($contents)); // 开始编码
$encode = '<?php'."eval(gzinflate(base64_decode("."'".
$encode."'".")));?>";
return file_put_contents($filename, $encode);
}
return false;
}
调用此函数:
$filename = 'result1.php';
encode_file_contents($filename);
echo "OK,加密完成!";
?>
3
测试是否加密成功:文件名为result1.php,运行代码
4
运行成功。