Contact_Vcard_Parse
[ class tree: Contact_Vcard_Parse ] [ index: Contact_Vcard_Parse ] [ all elements ]

Source for file test.php

Documentation is available at test.php

  1. <?php
  2. // report all errors
  3.  
  4. // include the class file
  5. require_once 'Contact/Vcard/Parse.php';
  6.  
  7. // instantiate a parser object
  8. $parse = new Contact_Vcard_Parse();
  9.  
  10. // parse it
  11. $data $parse->fromFile('test.vcf');
  12.  
  13. // output results
  14. echo '<pre>';
  15. print_r($data);
  16. echo '</pre>';
  17. ?>

Documentation generated on Mon, 11 Mar 2019 15:34:43 -0400 by phpDocumentor 1.4.4. PEAR Logo Copyright © PHP Group 2004.