Sophie

Sophie

distrib > Mandriva > 2010.0 > i586 > media > contrib-release > by-pkgid > 9a15cf27c72ce5ed851be2cc19f5b55f > files > 6

php-pear-File_IMC-0.3-9mdv2010.0.noarch.rpm

<?php

require_once 'File/IMC.php';

$parse = File_IMC::parse('vCard');

// parse a vCard file and store the data
// in $cardinfo
$cardinfo = $parse->fromFile('sample.vcf');
    
// view the card info array
echo '<pre>';
print $cardinfo[0]["N"][0]["value"][0][0];
print_r($cardinfo);
echo '</pre>';

?>