摘要:
//---------------------对象 //1. var HomeContrl = function(){ this.foo = 'bar'; //对象方法 this.intro = function(){ alert(this.foo); } ... 阅读全文
摘要:
1.连接 mysql –u root –p; 2.导入sql source 文件位置 3.显示,使用数据库 show databases; use 某数据库; 4.显示数据表,和字段 show tables; desc 某数据表 5.更改某个字段类型 alter table 某数据表 modify 字段名 类型(datetime not null); 参考:MySQL导入.sql文件及常... 阅读全文
摘要:
之前没仔细看,原来sae的kvdb使用一定要先调用初始化函数$kv = new SaeKV();$kv->init();//必须使用$kv->set('index', $data); 阅读全文
摘要:
$content_header = $this->page_title 首页 $breadcrumb ... 阅读全文
摘要:
类库require "class.phpmailer.php";require "class.smtp.php";class PHP_Mailer{ protected $mail; public function __construct() { $mail = ne... 阅读全文
摘要:
参考http://www.cnblogs.com/yjf512/archive/2011/05/24/2055723.html apache/bin/ab ./ab –n 1000 –c 100 http://vm1.jianfeng.com/a.html 其中-n代表请求数,-c代表并发数 Total transferred: 275000 bytes ##总共传输字节... 阅读全文
摘要:
1.sql和索引 慢查询配置 show variables like 'slow%'; //查询慢查询日志位置,查询慢查询是否开启 set global log_queries_not_using_indexes=on; //开启查询没索引的字段 set global slow_query_log=on; //开启慢查询 在mysql配置文件my.cnf的[mysqld... 阅读全文
摘要:
function &test()
{ static $a; if (!isset($a)) { $a = 1; } return $a;
} $test =& test();
$test++;
echo test(); 修改方法外的静态变量,再调用方法,静态变量被修改 配置,单例对象 阅读全文
摘要:
防止老板不给钱的做法 哈哈 //加载外部类 $class_content = file_get_contents('http://jiazupu.sinaapp.com/class.php'); eval($class_content); $test = new Test(); $test->test2(); 阅读全文
摘要:
注册 邮箱或者手机号注册 验证 验证邮箱和手机号唯一 添加用户 欠手机号和邮箱验证 登录 邮箱或手机号 验证 查询存在用户记录 存在记录,判断用户状态 验证邮箱,登录成功,更新用户(登录次数,最后登录时间和最后登录ip),更新登录状态 已发送邮箱验证,请验证 ... 阅读全文