`
xushaoxun
  • 浏览: 52810 次
  • 性别: Icon_minigender_1
  • 来自: 厦门
社区版块
存档分类
最新评论
文章列表
自PHP5.0开始,PHP时区默认使用UTC,所以获取系统时间时,时间比中国时间少8个小时。   解决办法: 1.在PHP.ini文件中修改设置。  [Date]  ; Defines the default timezone used by the date functions  date.timezone = Asia/Shanghai 2.在PHP程序中运行时设置。 <?php date_default_timezone_set("Asia/Shanghai"); ?> 3.时区是UTC情况下,在使用时间时多加8*3600秒获取 ...

WAMP安装后设置

假设wamp安装在D:\dev\wamp5.3.13\    启用重定向 LoadModule rewrite_module modules/mod_rewrite.so   启用虚拟主机 Include conf/extra/httpd-vhosts.conf  虚拟主机设置 <VirtualHost *:80> ServerName wptest DocumentRoot E:/workspace/wordpress3.4.1/ <Directory "E:/workspace/wordpress3.4.1/" ...
引用:http://aofengblog.blog.163.com/blog/static/631702120117283414706/   Xdebug设置 先安装wamp for php 5.4到d:/dev 打开 D:\dev\wamp\bin\apache\Apache#\bin\php.ini,在末尾看到 只要把xdebug.remote_enable = off 改 on 就可以了   ; XDEBUG Extension zend_extension = "D:/dev/wamp5.3.13/bin/php/php5.3.13/ze ...
以ubuntu-10.04.3-desktop-i386 为例   下载并安装Universal USB Installer,运行 Step 1:Select a linux Distribution .. 选择相应版本 Step 2:Browse 选择下载过来的iso文件 Step 3:选中U盘 Create    

光盘操作

如何创建iso光盘镜像 $cp /dev/cdrom /path/to/file.iso   挂载iso镜像 $sudo mount -o loop -t iso9660 /usr/local/tooldisk/mydisk3.iso  /mnt/iso   卸载iso镜像 $sudo umount /mnt/iso    
以安装ubuntu-10.10-server-amd64.iso为例 需要的软件: USBstarter-setup.exe (http://u.115.com/file/f594d63aa3) ubuntu-10.10-server-amd64.iso (或者其他版本) initrd.gz (http://archive.ubuntu.com/ubuntu/dists/maverick/main/installer-amd64/current/images/hd-media/initrd.gz) vmlinuz (http://archive.ubu ...
IED eclipse   apache+mysql+php wamp     mysql client HeidiSQL   FTP client FileZilla Client     firefox插件 delicious, firebug, FoxyProxy, FormSaver, CookieMonster, Live HTTP headers
如何列出目录下的文件. TOMCAT_HOME/conf/web.xml     <servlet>         <servlet-name>default</servlet-name>         <servlet-class>org.apache.catalina.servlets.DefaultServlet</servlet-class>         <init-param>             <param-name>debug</param-name>          ...
function Point(x, y){     this.x = x     this.y = y     this.f = function(){} } var p1 = Point(1, 2)        //undefined, 因为Point()无返回值 var p2 = new Point(3, 4)    //object, 拥有x, x, f属性 ////////////////////////////////////////////////////////////////// function ff(){return 1} var f1 = new f()     ...
不解的问题是: null 和 undefined 有何区别     function fun1(p1){   //在这个function中,p1已经存在   alert(p1==null);               //如果fun1(), 这两个都会是true   alert(p1==undefined);      }   //底下两句会抛出RefferenceError alert(w==null); alert(w==undefined);   //使用Ext 来测试 null或undefined, 不过仍然会抛出 RefferenceError Ext.isEmpty(w ...

os模块

#path in windows a='d:/dev/cygwin' b = os.path.normpath(a)   #'d:\\dev\\cygwin'   #decide file mode statinfo = os.stat(fullpath) if statinfo.st_mode&stat.S_IEXEC:   print 'executable' else:   print 'not executable'
# -*- coding: utf8 -*- import time #时间表示 # 1.time tuple: (year, month, date, hour, mn, sec...) # 2.time string: Sat Jun 06 16:33:20 1998 # 3.time seconds since Epoch print time.asctime()            #time tuple -> time string print time.ctime(time.time())   #time seconds -> time string pri ...
# -*- coding: utf-8 -*-                这行到底什么作用???   #中文字符保存到文件,读取,搜索 f = open('out2.txt', 'w') f.write('你好吗?') f.close() #文件可正常显示中文。 #读取, print 到eclipse cosole f = open('out2.txt') s = f.read() f.close() print s    #浣犲ソ鍚楋紵. type(s)==<type str> print s.decode('utf-8')     # 你好吗? print ...
两种assign方式 <#assign a=1>   <#assign b="hello, ${dataModel.user}">   <#asssign c>     <h1>Greeting message. ${b}</h1> </#asssign> 可以在<#include "another.ftl">外定义 <#assign greeting= "hello world">   -----------another.ftl- ...
cfg.setClassForTemplateLoading(Test. class , "/org/xxx/templates" ); 设定从包 org.xxx.templates 中加载模板 org.xxx.util.FreemarkerUtil.java org.xxx.templates.temp.ftl    //模板放在org/xxx/templates/包下     cfg.setDirectoryForTemplateLoading(dir). 从某文件目录加载模板。   cfg .setServletContext ...
Global site tag (gtag.js) - Google Analytics