2014-01-01から1年間の記事一覧

Web検索APIがあちこち提供終了しているのでbingのAPIを試す 簡易メモ

PHP

array( "request_fulluri" => true, "header" => "Authorization: Basic " . base64_encode($key . ":" . $key) ) ); $co…

mongodbのmapReduce 簡易メモ

keyを集計して件数を取得 mapreduce.js var map = function() { emit( this.key, // key 1 // value ); } var reduce = function(key, values) { var count = 0; values.forEach(function(value) { count += value; }); return count; } var mongo = new Mon…

PHPでZendFrameworkを使ってAmazonS3にアクセスする

PHP

AWS SDKを使った事例はググれば結構出てくるのですが、 ZendFrameworkのZend_Service_Amazon_S3での利用は あんまり見つからなかったので ざっくり使い方メモ。

phpでフォームのinputの最大個数はデフォルト1000だった

PHP

<form method="post" action="test.php"> <input type="checkbox" name="chk[]" value="1" checked> <input type="checkbox" name="chk[]" value="1" checked> <input type="checkbox" name="chk[]" value="1" checked> : でinputの取得できる最大数は1000っぽい。test.php でcheck…</form>