mojavi 3 ドキュメント

  http://ozaki.kyoichi.jp/mojavi3/

  PHP のフレームワーク mojavi 3.0 のドキュメント

極める! PHP

  4798108766
- http://www.amazon.co.jp/o/ASIN/4798108766/todaysnonsenc-22/ref=nosim/
  坂井 恵 (著), 上鍵 忠志 (著), 田中 正裕 (著), 月宮 紀柳 (著), 森川 穣 (著)
  翔泳社
  ISBN: 4798108766
  2005/06/02
  1,764 円

PHP プログラマの技量を知りたい時

- BMediaNode: Zend PHP Certification
  http://blog.bmedianode.com/2005/04/zend_certificat.html

PHP の sprintf() 関数の「引数の交換」と変換指定子の挙動

- フォーマット文字列を 2 重引用符 (") で指定した場合
  %1\$d のように「\」が必要

$format = "The %2\$s contains %1\$d monkeys";
printf($format, $num, $location);


- フォーマット文字列を「引用符 (')」で指定した場合
  %1$d のように「\」は不必要

$format = 'The %2$s contains %1$d monkeys';
printf($format, $num, $location);


- フォーマット文字列を「ヒアドキュメント」で指定した場合
  %1\$d のように「\」が必要

$format = <<<EOD
The %2\$s contains %1\$d monkeys
EOD;
printf($format, $num, $location);


- PHP: sprintf - Manual
  http://www.php.net/sprintf

PHP 4.3.11 の mb 系関数のバグ

- [PHP-users 25298] mb_convert_encoding/mb_detect_encoding について
  http://ns1.php.gr.jp/pipermail/php-users/2005-April/025814.html

- [PHP-users 25364] Re: 試験用パッチ (was Re: mb_convert_
  http://ns1.php.gr.jp/pipermail/php-users/2005-April/025880.html

PHP で動的な robots.txt の生成

- Using PHP to Automate Security
  http://ken.coar.org/Podium/show.php?p=phpblock

見やすい PHP の型の比較表

- PHP Cheat Sheet
  http://www.blueshoes.org/en/developer/php_cheat_sheet/

- PHP 型の比較表
  http://www.php.net/types.comparisons

PHP で XML を使おう

- Using XML with PHP
  http://juicystudio.com/tutorial/php/xml.asp

Smarty 入門 PHP5 + テンプレート・エンジンでつくる MVC アプリケーション

  4798108839
  http://www.amazon.co.jp/o/ASIN/4798108839/todaysnonsenc-22/ref=nosim/
  山田 祥寛 (著)
  翔泳社
  ISBN: 4798108839
  2005/03/15
  2,940 円

PHP による日本語の文字コード判定スクリプト

  http://www.asahi-net.or.jp/~wv7y-kmr/note/2004-11.html#YMD20041121_PHP