Skip to content

Latest commit

 

History

History
24 lines (17 loc) · 435 Bytes

export.md

File metadata and controls

24 lines (17 loc) · 435 Bytes

Documentation homepage

Exporting files

vCards

The existing .vcf file will be overwritten.

$vCard->export('./file/export/destination.vcf');

Collections

The existing .vcf can be overwritten or appended.

// OVERWRITTEN
$vCardCollection->export('./file/export/destination.vcf', append:false); 
// APPENDED
$vCardCollection->export('./file/export/destination.vcf', append:true);