‘php’ カテゴリーのアーカイブ

php.iniの設定その2

2004年10月1日 金曜日

short_open_tag = Off

xhtmlで書くから。
xml宣言でパースエラーが出てイライラするのでオフ。
その代わりphpは

<?php ~ >

になります。
ちなみにこの設定をすると

<?= ~ ?>(echo()の省略形)

が使えなくなります。

php.iniの設定(日本語編)

2004年10月1日 金曜日

mb_stringの設定。

—————————————
output_handler = mb_output_handler
mbstring.language = Japanese
mbstring.internal_encoding = EUC-JP
mbstring.http_input = auto
mbstring.http_output = SJIS
mbstring.encoding_translation = On
mbstring.detect_order = auto
mbstring.substitute_character = none;
—————————————

mbはマルチバイトの略。
日本語は2バイト文字なのでここの設定が必要不可欠。
文字コード関連でいろいろ大変です。
日本語って難儀だぜ…

phpカテゴリ新設

2004年10月1日 金曜日

macjournalにメモしてたけど、一応web共有資源になるし。
何より自分のメモに。
そして、全てのおれのような初心者に必要だと思って。