create_functionを使ってみやがれ – よしだメモ

create_functionを使ってみやがれ – よしだメモ
[php]
// rubyのArray#compactみたいなもの
$ary = array(NULL, 3, 0, 'hoge');
$result = array_filter($ary, create_function('$n', 'return $n;'));
var_dump($result);
/* array(2) {
[1]=> int(3)
[3]=> string(4) “hoge”
} */
[/php]

ほっほー。Array#compactですか。なんか、使いたくなる時があるかも。

関連する記事:

Powered by

Leave a Comment


NOTE - You can use these HTML tags and attributes:
<a href="" title=""> <abbr title=""> <acronym title=""> <b> <blockquote cite=""> <cite> <code> <del datetime=""> <em> <i> <q cite=""> <strike> <strong> <pre lang="" line="" escaped="" highlight="">