コード例 #1
0
ファイル: FilterDataBy.php プロジェクト: xiphe/thetools
 public function testFilterPostDataBy()
 {
     $_POST = array('foo_bar' => 13, 'bar' => 'asd');
     $this->assertSame(array('bar' => 13), X\THETOOLS::filter_postDataBy('foo', array('bar' => 'i')));
 }