忍者ブログ

Syok'n Lab

WEB開発のあれこれ PHP,JAVA,Javascript,Ajax,Flex,Air,Linuxなどなど 最近雑記帳になりつつある・・・

カテゴリー「PHP」の記事一覧
※コメント、トラックバックは認証後表示されますのでご了承下さい

[PR]

×

[PR]上記の広告は3ヶ月以上新規記事投稿のないブログに表示されています。新しい記事を書く事で広告が消えます。

pearコマンド プロキシ経由の使い方

pear config-set http_proxy YOUR_PROXY

拍手[0回]

PHP5でzip関数を使う

php5はphp4と違い、configure時に--with-zipが使えなくなったようです。

で、zip関数はどこ?となりますが、PECLの中に入っています。
PECLモジュールのインストールにはpearコマンドが使えるので

# pear install zip

で、簡単にインストールできます。

あとは、zip.soがあるディレクトリを探し出し、
php.iniの中に

extension_dir=「zip.soまでのパス」 extension=zip.so

を追加してapacheを再起動。
phpinfoで「zip」項目が確認できたらインストール完了です。

拍手[0回]

携帯 入力ヘルパー

携帯サイトでフォーム入力をする際、入力モードが自動的に変わるのはPCサイト以上に大切だと思っています。
input要素の属性で文字入力モードを指定する場合、htmlだと


i-modeとez-web
istyle=1 (全角かな)
istyle=2 (半角カナ)
istyle=3 (英字/半角文字)
istyle=4 (数字/半角文字)
softbank
mode="hiragana" (全角かな)
mode="katakana" (半角カナ)
mode="alphabet" (英字/半角文字)
mode="numeric" (数字/半角文字)
 で良かったのですが、xhtmlではこれが機能しません。
 そこで登場するのが-wap-input-formatです。

i-modeとsoftbank
style="-wap-input-format:'*'"(全角かな)
→エスケープすると style="-wap-input-format:"*<ja:h>""
style="-wap-input-format:'*'"(半角カナ)
→エスケープすると style="-wap-input-format:"*<ja:hk>""
style="-wap-input-format:'*'"(英字/半角文字)
→エスケープすると style="-wap-input-format:"*<ja:en>""
style="-wap-input-format:'*'"(数字/半角文字)
→エスケープすると style="-wap-input-format:"*<ja:n>""
ez-web
style="-wap-input-format:*M;"(全角かな)
style="-wap-input-format:*m;"(英字/半角文字)
style="-wap-input-format:*N;"(数字/半角文字)

 という具合になります。
 これを3キャリア共通にするためには;;で区切ってひとつながりに書くと大丈夫のようです。


style="-wap-input-format:"*<ja:h>";-wap-input-format:*M;"(全角かな)
style="-wap-input-format:"*<ja:hk>";-wap-input-format:*M;"(半角カナ)(ez-webは半角カナはなし)
style="-wap-input-format:"*<ja:en>";-wap-input-format:*m;"(英字/半角文字)
style="-wap-input-format:"*<ja:n>";-wap-input-format:*N;"(数字/半角文字)

拍手[0回]

smarty プラグイン作成法

http://www.y2sunlight.com/ground/?PHP5.0%2F8.Smarty%A4%F2%CD%FD%B2%F2%A4%B9%A4%EB

拍手[0回]

免責事項

当ブログに記載している情報に関しては、合法性、正確性、安全性等、いかなる保証もされません。従って、当ブログの情報を元に行う行為については自己責任でお願い致します。

カレンダー

04 2024/05 06
S M T W T F S
1 2 3 4
5 6 7 8 9 10 11
12 13 14 15 16 17 18
19 20 21 22 23 24 25
26 27 28 29 30 31

最新コメント

[02/10 幸一]
[12/08 yamamoto]
[07/23 Mr.ポテトヘッド]

最新トラックバック

ブログ内検索

Copyright ©  -- Syok'n Lab --  All Rights Reserved

Design by CriCri / Photo by Didi01 / Powered by [PR]

 / 忍者ブログ