ILIAS  release_5-4 Revision v5.4.26-12-gabc799a52e6
Issue64Test.php
Go to the documentation of this file.
1 <?php
2 
3 namespace Sabre\VObject;
4 
6 
7 class Issue64Test extends TestCase {
8 
9  function testRead() {
10 
11  $vcard = Reader::read(file_get_contents(dirname(__FILE__) . '/issue64.vcf'));
12  $vcard = $vcard->convert(\Sabre\VObject\Document::VCARD30);
13  $vcard = $vcard->serialize();
14 
15  $converted = Reader::read($vcard);
16 
17  $this->assertInstanceOf('Sabre\\VObject\\Component\\VCard', $converted);
18 
19  }
20 
21 }
const VCARD30
vCard 3.0.
Definition: Document.php:44
static read($data, $options=0, $charset='UTF-8')
Parses a vCard or iCalendar object, and returns the top component.
Definition: Reader.php:42