php

PHPアクセラレータで一番高速なのはどれか? - GIGAZINE

php

「PHPアクセラレータ」というのは何をしているのかというと、実行されたPHPスクリプトの中間形式にコンパイルされたデータをキャッシュディレクトリに保存することで、以後同じファイルに対してアクセスがあった時に、そのキャッシュファイルを利用すること…

Redirect

php

4. if文は「===」を使う PHP勉強会で、Dinoのhnwさんに教わったことですが、'0.00' == '0'は真です。 もし、仮に、パスワード処理でデータ側でMD5などのハッシュ化してない場合に、上記が真になっては非常にまずいのではないでしょうか。 さらにいえば、もっ…

PHP 5.2.0 Release Announcement

php

PHP: PHP 5.2.0 Release Announcement セキュリティ改善、性能向上、バンドルライブラリのアップグレード、いくつかの拡張の追加、200以上のバグフィックス。 すべてのPHP利用者(特にPHP 5の初期のバージョンを使っている場合)に、アップグレードを勧めています。 T…

CakePHP マニュアル

php

利用する時には参考にしたい。

PHPUnit 3.0 Beta 1

php

Selenium RC との連携やMock Objectのサポート。

PHP 5.1.6 Release Announcement

php

PHP 5.1.6 Release AnnouncementThis release is a re-release of PHP 5.1.5, which was missing the fix for memory_limit restriction on 64 bit systems. If you rely on this functionality and use 64bit machines, you are advised to upgrade.For a f…

PHP 5.1.5 Release Announcement

php

This release address a series of locally exploitable security problems discovered since PHP 5.1.4. All PHP users are encouraged to upgrade to this release as soon as possible.This release provides the following security fixes: * Added miss…

PHP 5.1.5のインストールメモ

php

# tar jxf php-5.1.5.tar.bz2 # cd php-5.1.5 # ./configure --with-apxs2=/usr/local/apache2/bin/apxs --enable-mbregex --enable-mbstring # make # sudo make installviaPHP: Apache 2.x on Unix systems - Manual

php.iniの設定

php

# cp -p php.ini-recommended /usr/local/lib/php.ini # vi /usr/local/lib/php.iniINIファイルの以下の箇所を変更する。 mbstring.http_output = UTF-8 mbstring.encoding_translation = Onapacheを再起動する。 # sudo /usr/local/apache2/bin/apachectl r…