コード例 #1
0
ファイル: DecoderTest.php プロジェクト: thorerik/bert-php
 public function testDecodeDict()
 {
     $bert = Bert::encode(array('a' => 'b'));
     $this->assertEqual(Bert_Decoder::decode($bert), array('a' => 'b'));
 }
コード例 #2
0
ファイル: Bert.php プロジェクト: thorerik/bert-php
 public static function decode($bert)
 {
     return Bert_Decoder::decode($bert);
 }