confidence and accomplish, where are you now??
I have been confidence and accomplish, but where are they now??
I have been work for a long time, but less and less of accomplishment~
What can I do?
In order to happiness for "xiao sha gua ",I have to work hard
[隐藏] 我在想什么呢?
这是一篇隐藏文章,你没有权限查看
深圳世界之窗--091002
091002,第一次真正去到深圳。
到了罗湖,一直坐地铁到世界之窗。(其实中途有去过地王大厦,没有图片里的好看。其实和中信都差不多的)
到达世界之窗。题前话:其实个人觉得世界之窗对不起门票的价格。景区并不大,而且里面尽是园中园。
本来打算去欢乐谷的,但是我曾经去过长隆欢乐世界,其实两个都差不多的,所以就去世界之窗了。
没带伞,又没戴帽子,被晒了半天。。。
区别不同浏览器的CSS hack写法
IE6.0、IE7.0 与FireFox CSS兼容的写法问题
1.DOCTYPE 影响 CSS 处理
2.FF: div 设置 margin-left, margin-right 为 auto 时已经居中, IE 不行
3.FF: body 设置 text-align 时, div 需要设置 margin: auto(主要是 margin-left,margin-right) 方可居中
4.FF: 设置 padding 后, div 会增加 height 和 width, 但 IE 不会, 故需要用 !important 多设一个 height 和 width
5.FF: 支持 !important, IE 则忽略, 可用 !important 为 FF 特别设置样式
...
php实现定时计划任务
ignore_user_abort() 函数搭配set_time_limit(0)和sleep($interval)即可实现程序自动运行更新,下面是一个实例:
<?php
ignore_user_abort(); //即使Client断开(如关掉浏览器),PHP脚本也可以继续执行.
set_time_limit(0); // 执行时间为无限制,php默认的执行时间是30秒,通过set_time_limit(0)可以让程序无限制的执行下去
$interval=60*5; //时间间隔
do{
//要执行的代码
sleep(...