linux安装
下载目录最好放在PHP文件夹同级目录我的是 www/server/php同级下
wget https://github.com/liexusong/php-beast/archive/master.zip
unzip master.zip
cd php-beast-master
phpize
./configure --with-php-config=/www/server/php/70/bin/php-config(注意这个等于号后面的目录是PHP安装php-config的真实目录)
make && make install 编译安装
编译好之后修改php.ini配置文件, 加入配置项: extension=/www/server/php/71/lib/php/extensions/no-debug-non-zts-20160303/beast.so, 重启php-fpm
加密方式第一种:
安装完 php-beast 后可以使用 tools 目录下的 encode_files.php 来加密你的项目。使用 encode_files.php 之前先修改 tools 目录下的 configure.ini 文件
src_path 是要加密项目的路径,dst_path 是保存加密后项目的路径,expire 是设置项目可使用的时间 (expire 的格式是:YYYY-mm-dd HH:ii:ss)。encrypt_type是加密的方式,选择项有:DES、AES、BASE64。 修改完 configure.ini 文件后就可以使用命令 php encode_files.php (记得是在文件所在目录下执行命令)开始加密项目。
使用beast_encode_file()函数加密文件,函数原型如下:
beast_encode_file(string $input_file, string $output_file, int expire_timestamp, int encrypt_type)。
注;configure.ini 只填写目录
php encode_files.php 启动加密的命令 加密目录
encode_file.php修改单个 不能重复加密下次加密要更改
然后运行 php encode_file.php
具体的参考网址
https://www.oschina.net/p/php-beast