2008-03-05から1日間の記事一覧

postgresqlで今月やつだけとる

postgresはMONTHない 今月のエントリされた日付けをとりだす。 select date_part('day',entry_datetime) as day from entry where date_part('month',entry_datetime) = date_part('month',now()); 2007年2月のエントリだけ取り出す。 select * from entry w…

xdebugを入れる

php

wget http://pecl.php.net/get/xdebug-2.0.2.tgz tar zxvf xdebug-2.0.2.tgz cd xdebug-2.0.2 phpize Configuring for: PHP Api Version: 20041225 Zend Module Api No: 20060613 Zend Extension Api No: 220060519 ./configure --enable-xdebug make cp -i …