unpack() 공개 메소드

public unpack ( ) : mixed
리턴 mixed
예제 #1
0
 public function testBadKeyTypeIsIgnored()
 {
     $this->unpacker->reset("��");
     // [[1, 2] => 0, 4 => 2]
     $raw = @$this->unpacker->unpack();
     $this->assertSame([4 => 2], $raw);
 }