loading....

  博客园 :: 首页 :: 博问 :: 闪存 :: 新随笔 :: 联系 :: 订阅 订阅 :: 管理 ::
<?php
    error_reporting(E_ALL);
    ini_set('display_errors','1');
    
    //批量加密码当前目录
    $dirnow = getcwd();
    $dirnowfile = scandir($dirnow,1);
    foreach($dirnowfile as $dirfile){
        if(substr(strrchr($dirfile,'.'),1)){
            ioncube_encode_file($dirfile,'encode/'.$dirfile);
        }
    }
    echo '加密完成';
    //加密单个文件
    //ioncube_encode_file('info.php', 'out.php');

 

posted on 2014-11-23 15:49  程序加载中  阅读(618)  评论(0编辑  收藏  举报