Looking for more information on how to do PHP the right way? Check out PHP: The Right Way

Jackson Miller's Blog:
PHP vs. Ruby (on Installation)
Jan 06, 2006 @ 12:51:33

Jackon Miller looks (very briefly) at one point of difference between Ruby and PHP - the installation.

Steps for installing Ruby

  1. ./configure
  2. make
  3. make install

Steps for installing PHP

  1. ./configure --help
  2. Write down necessary configuration options and run something like...
  3. ./configure --host=i386-redhat-linux --build=i386-redhat-linux --target=i386-redhat-linux-gnu --prefix=/usr -- [etc....]

He is being a little tongue-in-cheek here, but it is an interesting point. Sure, it's nice to have it where PHP is flexible and you can compile in whatever you'd like, but what about those that just want one or two things? Or maybe more, but don't want to go through the whole install process?

tagged: versus ruby installation simple complex versus ruby installation simple complex

Link:


Trending Topics: