* // include this class file
* require_once 'Contact_Vcard_Parse.php';
*
* // instantiate a parser object
* $parse = new Contact_Vcard_Parse();
*
* // parse a vCard file and store the data
* // in $cardinfo
* $cardinfo = $parse->fromFile('sample.vcf');
*
* // view the card info array
* echo '';
* print_r($cardinfo);
* echo '
';
*
*
* @category File_Formats
* @package Contact_Vcard_Parse
* @author Paul M. Jones