Sophie

Sophie

distrib > Mandriva > 2010.0 > i586 > media > contrib-release > by-pkgid > 5000938142c41982ad187c1a9b854207 > files > 3

php-pear-Contact_Vcard_Parse-1.32.0-1mdv2010.0.noarch.rpm

<?php
// report all errors
error_reporting(E_ALL);

// include the class file
require_once 'Contact/Vcard/Parse.php';

// instantiate a parser object
$parse = new Contact_Vcard_Parse();

// parse it
$data = $parse->fromFile('test.vcf');

// output results
echo '<pre>';
print_r($data);
echo '</pre>';
?>