Monthly Archives: 2013年9月

[分享] Excel—“撤销工作表保护密码”的破解并获取原始密码

← Continue Reading
刚才提交打卡记录,发现有几次忘记打卡鸟,就找到了这个破解方法,很不错哟 在日常工作中,您是否遇到过这样的情况:您用Excel编制的报表、表格、程序等,在单元格中设置了公式、函数等,为了防止其他人修改您的设置或者防止您 自己无意中修改,您可能会使用Excel的工作表保护功能,但时间久了保护密码容易忘记,这该怎么办?有时您从网上下载的Excel格式的小程序,您想修 改,但是作者加了工作表保护密码,怎么...

JS+CSS模拟IP输入框

← Continue Reading
代码如下 【 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN"> <html><head> <title>测试</title> <meta http-equiv="Content-type" content="text/html; charset=gb2312"> <meta h...

html联动省市菜单

← Continue Reading
 点击下载 china全国省市表

php正则过滤html标签、空格、换行符的代码

← Continue Reading
$str=preg_replace("/\s+/", " ", $str); //过滤多余回车 $str=preg_replace("/<[ ]+/si","<",$str); //过滤<__("<"号后面带空格) $str=preg_replace("/<\!--.*?-->/si","",$str); //注释 $str=preg_replace("/<...

PHP 于Java AES 加密解密,需要删除填充值。

← Continue Reading
//PHP 解密Java <?php class AESMcrypt { public $iv = null; public $key = null; public $bit = 128; private $cipher; public function __construct($bit, $key, $iv, $mode) { if(empty($bit) || empty($key) |...