PHP code example of remind / businesscard
1. Go to this page and download the library: Download remind/businesscard library. Choose the download type require. 2. Extract the ZIP file and open the index.php. 3. Add this code to the index.php.
<?php
require_once('vendor/autoload.php');
/* Start to develop here. Best regards https://php-download.com/ */
remind / businesscard example snippets
use Remind\BusinessCard\VCard;
use Remind\BusinessCard\Property\Func;
use Remind\BusinessCard\Property\N;
use Remind\BusinessCard\Property\Version;
$version = new Version();
$version->setVersion(Version::VERSION_4_0);
$vCard = new VCard($version);
$n = new N();
$n->setGivenName('John');
$n->setFamilyName('Doe');
$fn = new Func('John Doe');
$vCard->addProperty($n);
$vCard->addProperty($fn);
echo $vCard;