PHP 源码加密模块:php-beast
jopen
11年前
PHP Beast是一个源码加密模块,使用这个模块可以把PHP源码加密并在此模块下运行。
使用方法:
1)安装
wget https://php-beast.googlecode.com/files/beast-v0.2.zip unzip beast-v0.2.zip cd beast phpize ./configure make && make install
2)修改php.ini 添加配置:extension=beast.so
3)重启服务器
4)加密PHP文件 使用模块提供的beast_encode_file($input_file, $output_file);来加密文件,$input_file为要加密的文件,$output_file为要输出的加密文件。
5)把加密好的文件放到服务器上运行。