4: 2010-05-02 (Sun) 21:07:18 admin |
5: 2012-03-27 (Tue) 17:44:53 iseki |
| | | |
| *** Install [#g3ac2181] | | *** Install [#g3ac2181] |
| + | - --enable-intl を指定する場合は libicu-devel パッケージが必要 |
| + | |
| # zcat php-5.x.y.tar.gz |tar xfv - | | # zcat php-5.x.y.tar.gz |tar xfv - |
| # cd php-5.x.y | | # cd php-5.x.y |
- | # ./configure --with-mysql=/usr/local/mysql --with-mysqli=/usr/local/mysql/bin/mysql_config \ | + | # ./configure --with-mysql=/usr/local/mysql --with-mysqli=/usr/local/mysql/bin/mysql_config \ |
| + | --with-pdo-mysql=/usr/local/mysql \ |
| --with-apxs2=/usr/local/apache/bin/apxs \ | | --with-apxs2=/usr/local/apache/bin/apxs \ |
- | --enable-mbstring --with-iconv --with-zlib=/usr \ | + | --enable-sockets --enable-zip --enable-soap --enable-pcntl \ |
- | --with-openssl=/usr/local/ssl --with-curl --with-xmlrpc \ | + | --enable-mbstring --with-iconv --enable-intl \ |
| + | --with-zlib=/usr --with-openssl=/usr/local/ssl --with-curl --with-xmlrpc \ |
| --with-gd --with-jpeg-dir --with-png-dir | | --with-gd --with-jpeg-dir --with-png-dir |
| # make | | # make |
| -- /usr/local/lib/php.ini | | -- /usr/local/lib/php.ini |
| | | |
- | **** <? ... ?> <?=... > [#u7a17883] | + | **** Short Open Tag [#u7a17883] |
- | - Short Open Tag を有効にするには,設定ファイルで以下のように設定する. | + | - <? ... ?>, <?=... > 等の Short Open Tag を有効にするには,設定ファイルで以下のように設定する. |
| short_open_tag = On | | short_open_tag = On |
| #br | | #br |
| + | |
| *** MySQL [#f960f3f5] | | *** MySQL [#f960f3f5] |
| - 処理中の文字コードを UTF-8にする場合 | | - 処理中の文字コードを UTF-8にする場合 |
| - mb_internal_encoding("utf-8") は php.ini でも指定可能. | | - mb_internal_encoding("utf-8") は php.ini でも指定可能. |
| - SET NAMES utf8 でクエリの文字コードを指定可能. | | - SET NAMES utf8 でクエリの文字コードを指定可能. |
| + | #br |
| + | |
| + | |
| + | #br |