xcodeでメモリリークを簡単に調べる方法 2011年03月03日 過去Blog Xcode • メモリリーク 以下のサイトにあるようなことが出来るらしい。 http://www.lastday.jp/2011/03/01/memory-leak-xcod やったことないので、今度やってみようと思います。
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… この記事の続きを読む
NSAssert,NSAssert2 2011年04月13日 過去Blog NSAssert 指定した条件が間違っていればlogに文字列を書き込む NSAssert2 指定した条件が間違っていればlogに引数2つの文字列を書き込む http://www.oomori.com/cocoafw/Foundation/NSAssert2/NSAssert2.html free raspberry ketones… この記事の続きを読む
PHP 配列から空要素を削除する 2010年06月08日 過去Blog 以下のように実行することで、配列内から空要素を削除することが出来ます。 //空要素を削除 $link_accept_list = array_merge(array_diff($link_accept_list, array("")));
この投稿へのコメント
コメントはまだありません。