PHP代码批量加密

<?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');
上一篇:集合框架的类和接口均在java.util包中。 任何对象加入集合类后,自动转变为Object类型,所以在取出的时候,需要进行强制类型转换。


下一篇:数据结构Java实现02----单向链表的插入和删除