Monthly Archives: 2013年9月
← Continue Reading
刚才提交打卡记录,发现有几次忘记打卡鸟,就找到了这个破解方法,很不错哟
在日常工作中,您是否遇到过这样的情况:您用Excel编制的报表、表格、程序等,在单元格中设置了公式、函数等,为了防止其他人修改您的设置或者防止您 自己无意中修改,您可能会使用Excel的工作表保护功能,但时间久了保护密码容易忘记,这该怎么办?有时您从网上下载的Excel格式的小程序,您想修 改,但是作者加了工作表保护密码,怎么...
← 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...
← Continue Reading
$str=preg_replace("/\s+/", " ", $str); //过滤多余回车
$str=preg_replace("/<[ ]+/si","<",$str); //过滤<__("<"号后面带空格)
$str=preg_replace("/<\!--.*?-->/si","",$str); //注释
$str=preg_replace("/<...
← 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) |...