コード例 #1
0
ファイル: UtilTest.php プロジェクト: aiddroid/utilphp
 public function test_array_map_deep()
 {
     $input = array('<', 'abc', '>', 'def', array('&', 'test', '123'), (object) array('hey', '<>'));
     $expect = array('&lt;', 'abc', '&gt;', 'def', array('&amp;', 'test', '123'), (object) array('hey', '<>'));
     $this->assertEquals($expect, util::array_map_deep($input, 'htmlentities'));
 }