iPhoneアプリのメモリリークを検証する方法 2011年01月06日 過去Blog メモリリーク この記事に関しては、未完結ですが、覚え書きとして、随時追加していきます。 以下のような方法があるらしい。 Instruments XCodeのメニューの「実行」→「パフォーマンスツールを使って開始」→「Leaks」を選択して、「Instruments」 Allocations Xcodeからは「実行」メニューの「パフォーマンスツールを使って実行」から利用することができます。 Xcodeでローカライゼーションをするときに便利なツール? http://www.loc-suite.org/
Apacheの負荷軽減 2010年03月31日 過去Blog Apacheのチューニングについて。 今のところ、大丈夫かなと思いますが、いずれ試してみようと思います。 http://tech.bayashi.net/svr/doc/apache/tune.html hostingreviewssite.com
PHP 配列から空要素を削除する 2010年06月08日 過去Blog 以下のように実行することで、配列内から空要素を削除することが出来ます。 //空要素を削除 $link_accept_list = array_merge(array_diff($link_accept_list, array("")));
PHP strstr stristr ある文字列が含まれるかどうか調べる 2010年06月11日 過去Blog $string = 'Hello World!'; if(stristr($string, 'earth') === FALSE) { echo '"earth" not found in string'; } // 出力は "earth" not found in string となります 参照元:http://www.php.net/manual/ja/function.st… この記事の続きを読む
htmlファイルでphpを動かすための.htaccessファイルの設定 2009年11月20日 過去Blog htmlファイルでphpを動かすための.htaccessファイルの設定 .htaccessファイル内に以下の行を記述します。 AddType application/x-httpd-php .htm .html 当然の前提条件として、htaccessの動作が許可されているサーバに限ります。… この記事の続きを読む
PHP 配列から空白要素を削除する 2010年02月20日 過去Blog 配列 $array_exampleの要素のなかで、空白のものを削除。 $array_example = array_filter($array_example, 'strlen');
この投稿へのコメント
コメントはまだありません。