随便摘录

显示这样格式的日期:May 10th 2013,一般用在英文站。 实现: 用php代码:date(“M dS Y”,strtotime($endtime))

—————————————————————————

css3鼠标hover效果
——————————————————————————
因为死,仅仅会因为自己做得不够好而死,而不是暴露了不够好而死(暴露只是加速了死亡)。

对于出现的问题的时候我们应该抱着“我们如何才能解决的”角度思考,而不是“我们解决不了”的态度。

推荐12款JavaScript表单插件

http://www.csdn.net/article/2012-03-30/313748

密码强度插件:

http://mypocket-technologies.com/jquery/password_strength/

判断你是否载入过一次jquery 如果没有。则载入:<script>window.jQuery || document.write(“<script src=’/cityosweb/gameweb/Tpl/default/js/jquery/jquery.min.js’><\/script>”);</script>

https://trello.com/ 任务管理网站,挺不错的,适合同部门团队协作。

https://basecamp.com 适合跨部门合作沟通

redmine系统,适合分配任务,跨部门协作。

strpos() 函数返回字符串在另一个字符串中第一次出现的位置。

如果没有找到该字符串,则返回 false。

注释:该函数对大小写敏感。如需进行对大小写不敏感的搜索,请使用 stripos() 函数。

例子

<?php
echo strpos("Hello world!","wo");
?>

输出:

6

-------------------------------------
sql 创建视图:

CREATE ALGORITHM=TEMPTABLE DEFINER=`root`@`127.0.0.1` SQL SECURITY DEFINER VIEW `wp_users` AS select `mj_user`.`cityos_user_id` AS `ID`,`mj_user`.`username` AS `user_login`,`mj_user`.`pass_word` AS `user_pass`,`mj_user`.`nickname` AS `user_nicename`,`mj_user`.`email` AS `user_email`,” AS `user_url`,str_to_date(`mj_user`.`create_datetime`,’%Y%m%d%H%i%s’) AS `user_registered`,” AS `user_activation_key`,`mj_user`.`account_status` AS `user_status`,`mj_user`.`nickname` AS `display_name` from `mj_user`;

 

理解ajax 同步异步请求,以post为例

异步的话 就是post里面的没有执行完 下面的代码也可以继续执行 同步的话要等post执行完才能继续下面的代码

———————————————–