Not Equal C && !=C && 不等于西
RSS icon Email icon Home icon
  • Setting up virtualhost in Apache on Windows XP

    Posted on April 27th, 2010 Sean Add comments

    1.Configuring Apache
         The first file need to edit is the Apache httpd.conf file. Usually, it’s under the root folder where the Apache was installed.
         If IIS is also used on Windows, IIS will use 80 port first, so need to change the port number of Apache server, e.g. change port 80 to 8080

         Then, add new virtualhost

         In the end, need to define the permissions of the virtualhost directory:


    2.Resolving the DNS issue
         Obviously, if typed “http://sub.localhost” in your browser, it would not be found by your Internet provider’s DNS server, and still need modify the files called “hosts”. It’s under “C:\Windows\system32\drivers\etc\”, and just add the new sub domain to the file:

  • 1 Star2 Stars3 Stars4 Stars5 Stars (No Ratings Yet)
    Loading...Loading...
    829 views
  • PHP None-Thread Safe & Thread Safe区别(非线程安全与线程安全)

    Posted on April 22nd, 2010 Sean 1 comment

         由于PHP是在Linux/Unix系统下开发的,而又由于Linux/Unix系统是采用多进程(process)的工作方式而Windows系统是采用多线程(thread)的工作方式。如果在IIS下以CGI方式运行PHP会非常慢,这是由于CGI模式是建立在多进程的基础之上的,而非多线程。一般我们会把PHP配置成以ISAPI的方式来运行,ISAPI是多线程的方式,这样就快多了。但存在一个问题,很多常用的PHP扩展是以Linux/Unix的多进程思想来开发的,这些扩展在ISAPI的方式运行时就会出错搞垮IIS。因此在IIS下CGI模式才是 PHP运行的最安全方式,但CGI模式对于每个HTTP请求都需要重新加载和卸载整个PHP环境,其消耗是巨大的。
         为了兼顾IIS下PHP的效率和安全,微软给出了FastCGI的解决方案。FastCGI可以让PHP的进程重复利用而不是每一个新的请求就重开一个进程。同时FastCGI也可以允许几个进程同时执行。这样既解决了CGI进程模式消耗太大的问题,又利用上了CGI进程模式不存在线程安全问题的优势。
         因此,如果是使用ISAPI的方式来运行PHP就必须用Thread Safe(线程安全)的版本;而用FastCGI模式运行PHP的话就没有必要用线程安全检查了,用None Thread Safe(NTS,非线程安全)的版本能够更好的提高效率。

  • 1 Star2 Stars3 Stars4 Stars5 Stars (1 votes, average: 5.00 out of 5)
    Loading...Loading...
    5,523 views
  • PHP中检查文本输入是否为空或0

    Posted on April 13th, 2009 Sean 2 comments

         玩PHP有一段时间了,从phpBB的论坛,到本blog的wordpress,总觉得php是既实用又简便,更重要的——是免费的。
         最近在搞一个open source的程序,由于是开源的,除了源代码以外就基本没有什么可参考的资料或者注解,所以修改起来着实地头疼。尤其是其中一个部分,需要检查某文本输入框内,用户输入的data是否为0,或者是否为空(即什么也没输入)。因为什么也没输入,变量就按照默认的数值走,而默认数值可由用户在特别的function内设置;但如果是0,那变量自然要取0。
         最开始一直尝试empty(),代码如下:

         但最后发现empty()其实把空变量和0都规为一类了,所有不论我输入0或者不输入,最后变量的值均为不输入的值,也就是默认值。随即把代码改为:

         改完一测试,结果变成不论输入0还是不输入,变量的值均为0!!郁闷,从我多年C的经验看,逻辑和语法都没错误……
         过了几天,吃完午饭后突然灵光一现,将if和else语句的条件掉了个,改为:

         再一测试,整个世界清静了~~~~

  • 1 Star2 Stars3 Stars4 Stars5 Stars (No Ratings Yet)
    Loading...Loading...
    849 views