2014-02-01から1ヶ月間の記事一覧

【メモ】英文中に出てくるe.g.はfor example

英文中に出てくるe.g.はfor exampleの略らしい。

cakephp2.x で外部phpからライブラリのようにcakephpを使う方法

※要検証 参考URL) http://web.mt-systems.jp/archives/783 webroot/index.phpを読み込む方法 $_SERVER['PATH_INFO'] = '/posts/index/'; require_once('../cakephp/app/webroot/index.php'); CakeRequest::__url() を見てるとpath_info->request_uriの順でUR…

【メモ】ファイルの拡張しを一括変更するコマンド

for name in *.html do mv $name ${name%.html}.php; done forの使い方 for 変数 in 値リスト do 処理 done shellの変数展開 ${parameter%word} 最短後置パターンの削除 http://qiita.com/bsdhack/items/597eb7daee4a8b3276ba