使用eAccelerator加密PHP程序

2015-01-24信息快讯网

这款软件的功能就是通过在内存中缓存PHP文件从而加速PHP程序的执行速度。由于MMCache的原作者被Zend挖走,MMCache的开发一直处于停滞状态。而Eaccelerator却借鉴了MMCache的优点而一直在不断的更新。

使用 eAccelerator 加密PHP程序
# /usr/local/bin/encoder 

执行后会看到简单的使用说明:
Usage: encoder [options] source_file_name 
encoder [options] source_file_name... 
encoder [options] source_directory_name... 
Options: 
-s suffix 
encode files only with following suffix (default is "php") 
-a 
encode all files (no by default) 
-l 
follow symbolic links (no by default) 
-r 
encode directories recursively (no by default) 
-c 
copy files those shouldn't be encoded (no by default) 
-f 
overwrite existing files (no by default) 
-w 
exclude check for eaccelerator_load() and subsequent warning 
-o target 
If you encode only one script then 'target' specifyes an output 
file name. If you encode directory or several files at once 
then 'target' specifyes an output directory name. 
Examples: 
encoder some_file.php 
encoder some_file.php -o some_encoded_file.php 
encoder *.php -o some_dir 
encoder ~/public_html/x -rcf -sphp -sinc -o ~/public_html/y 

稍微玩一下应该就知道怎 用了...
使用 encoder 去对 PHP 程式加密编码,会产生另外一个档案,你也可以对整个目录作转换,例如:
# encoder code -rcf -sphp -sinc -o code_encoded 

这个命令会把 code/ 目录下所有的 php / inc 结尾的档案作编码,并存放到 code_encoded 下面,
同时,由于指定了 -c 这个选项,其他格式、不需编码的档案,如 jpg/gif/html/js 等,
也会原封不动复制一份到 code_encoded 下面,这样方便你直接以这个目录来提供服务。
选项 -r 含底下所有子目录
PHP编码规范之注释和文件结构说明
PHP中开发XML应用程序之基础篇 添加节点 删除节点 查询节点 查询节
php set_magic_quotes_runtime() 函数过时解决方法
PHP 函数学习简单小结
PHP过滤器的实现方法第1/2页
PHP中文URL编解码(urlencode()rawurlencode()
PHP 多维数组排序(usort,uasort)
PHP 数组遍历方法大全(foreach,list,each)
php $_SERVER["REQUEST_URI"]获取值的通用解决方法
PHP XML error parsing SOAP payload on line 1
PHP中json_encode、json_decode与serialize、unserialize的性能测试分析
php 提速工具eAccelerator 配置参数详解
php select,radio和checkbox默认选择的实现方法
php imagecreatetruecolor 创建高清和透明图片代码小结
Godaddy空间Zend Optimizer升级方法
php file_exists 检查文件或目录是否存在的函数
php is_file 判断给定文件名是否为一个正常的文件
PHP注释实例技巧
脚本安全的本质_PHP+MYSQL第1/3页
一些使用频率比较高的php函数
PHP base64+gzinflate压缩编码和解码代码
php下实现在指定目录搜索指定类型文件的函数
php优化及高效提速问题的实现方法第1/2页
PHP Header用于页面跳转要注意的几个问题总结
什么是phpDocumentor第1/2页
PHP伪造referer实例代码
FleaPHP的安全设置方法
用PHP调用Oracle存储过程的方法
PHPMailer邮件类利用smtp.163.com发送邮件方法
fleaphp下不确定的多条件查询的巧妙解决方法
php chr() ord()中文截取乱码问题解决方法
PHP通用分页类page.php[仿google分页]
php-accelerator网站加速PHP缓冲的方法
PHP中$_SERVER的详细参数与说明
效率较高的php下读取文本文件的代码 原创
©2014-2024 dbsqp.com