必要があったので。
<?php class Sample { private $arr = ['masuda', 'sample']; function str_upper($str){ return strtoupper($str); } // 第一引数にarrayを渡せばできる function wrapper_str_upper(){ return array_map(array($this, 'str_upper'), $this->arr); } } $sample = new Sample(); var_dump($sample->wrapper_str_upper());
array(2) { [0] => string(6) "MASUDA" [1] => string(6) "SAMPLE" }
NECラーニング株式会社 内山 祥恵,NECラーニング株式会社 棚橋 英之,株式会社マルチメディアスクール・ウェーヴ インプレスジャパン 2012-09-14