mssql8
<?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\');

 

分类:

技术点:

相关文章:

  • 2021-12-29
  • 2021-05-11
  • 2021-12-17
  • 2021-06-27
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2021-12-19
猜你喜欢
  • 2021-10-05
  • 2022-12-23
  • 2021-12-30
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
相关资源
相似解决方案