正規表現とデリミタとエスケープ
http://www.akatsukinishisu.net/itazuragaki/perl/regex_delimiter_escaping.h ...
「Perl・PHP・JavaScript それぞれにおける正規表現マッチの動作の違い」について.
http://www.akatsukinishisu.net/itazuragaki/perl/regex_delimiter_escaping.h ...
「Perl・PHP・JavaScript それぞれにおける正規表現マッチの動作の違い」について.
http://www.ilovejackdaniels.com/cheat-sheets/
MySQL Cheat Sheet
mod_rewrite Cheat Sheet
CSS Cheat Sheet
PHP Cheat Sheet
RGB Hex Colour Chart
が PDF (または,PNG 形式) でダウンロードできる.
- ref.:
[2005-06-21-2] CVS Quick Reference Card
[2005-06-21-1] VIM Quick Reference Card
関連記事:
[2005-06-21-2] CVS Quick Reference Card
[2005-06-21-1] VIM Quick Reference Card

![]()
Andi Gutmans (著), Stig Saether Bakken (著), Derick Rethans (著)
Prentice Hall Ptr
ISBN: 013147149X
2004/10/26
3,738 円
- "PHP 5 Power Programming" Available for Free in PDF Format:
http://farm.tucows.com/blog/_archives/2005/5/5/654505.html
PDF でもダウンロードできる.
- Bruce Perens' Open Source Series
http://www.phptr.com/promotions/promotion.asp?promo=1484&redir=1&rl=1

- ![]()
坂井 恵 (著), 上鍵 忠志 (著), 田中 正裕 (著), 月宮 紀柳 (著), 森川 穣 (著)
翔泳社
ISBN: 4798108766
2005/06/02
1,764 円
- BMediaNode: Zend PHP Certification
http://blog.bmedianode.com/2005/04/zend_certificat.html
- フォーマット文字列を 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-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
- Using PHP to Automate Security
http://ken.coar.org/Podium/show.php?p=phpblock
- PHP Cheat Sheet
http://www.blueshoes.org/en/developer/php_cheat_sheet/
- PHP 型の比較表
http://www.php.net/types.comparisons