Exemplo n.º 1
0
 /**
  */
 public function testParseAgain()
 {
     $mt = new MIME_Type();
     $mt->parse('application/ogg;description=Hello there!;asd=fgh');
     $this->assertEquals(2, count($mt->parameters));
     $mt->parse('text/plain;hello=there!');
     $this->assertEquals(1, count($mt->parameters));
 }