博客园  :: 首页  :: 新随笔  :: 联系 :: 订阅 订阅  :: 管理

2013年5月24日

摘要: $input ='http://mlaan2.home.xs4all.nl/ispack/isetup-5.5.3.exe'; /***加密函数*$input 要被加密的字符串*$key 密钥*/$key = randomkeys(8);//生成随机密匙function do_mencrypt($input, $key) { $input = base64_encode(trim($input)); //$key = substr(md5($key), 0, 4); $td = mcrypt_module_open('des', '', ' 阅读全文

posted @ 2013-05-24 18:54 losen 阅读(602) 评论(0) 推荐(0) 编辑

摘要: <?php$user_online = "count.txt"; //保存人数的文件touch($user_online); //如果没有此文件,则创建$timeout = 300; //30秒内没动作者,认为掉线$user_arr = file_get_contents($user_online);$user_arr = explode('#', rtrim($user_arr, '#'));//print_r($user_arr);$temp = array();foreach ($user_arr as $value) { $us 阅读全文

posted @ 2013-05-24 15:43 losen 阅读(243) 评论(0) 推荐(0) 编辑