PHPackages                             worksection/vcard - PHPackages - PHPackages  [Skip to content](#main-content)[PHPackages](/)[Directory](/)[Categories](/categories)[Trending](/trending)[Leaderboard](/leaderboard)[Changelog](/changelog)[Analyze](/analyze)[Collections](/collections)[Log in](/login)[Sign up](/register)

1. [Directory](/)
2. /
3. worksection/vcard

ActiveLibrary

worksection/vcard
=================

VCard class (make usable package from https://github.com/nuovo/vCard-parser code)

1.1.0(2y ago)011.9k↓100%PHPPHP &gt;=7.0.0

Since Jun 20Pushed 2y ago1 watchersCompare

[ Source](https://github.com/worksection/vcard)[ Packagist](https://packagist.org/packages/worksection/vcard)[ RSS](/packages/worksection-vcard/feed)WikiDiscussions master Synced 1mo ago

READMEChangelog (1)DependenciesVersions (5)Used By (0)

Nuovo/Nouveau vCard-parser is a simple vCard file parser with the focus on ease of use.

The parser was written mostly because I couldn't find one that I was satisfied with - all those that I tried either failed with real world data or were too unwieldy or inconvenient, hence this parser.

The parser can read both single and multiple vCards from a single file and with the help of PHP's magic methods and interfaces it can be written concisely. For example:

```
include('vCard.php');
$vCard = new vCard('Example3.0.vcf');

```

Get the number of vCards in the file

```
echo count($vCard);

```

In the single-vCard mode every element is accessible directly.

```
if (count($vCard) == 1)
{
    print_r($vCard -> n);
    print_r($vCard -> tel);
}

```

In the multiple-vCard mode the object can be used as an array to retrieve separate vCard objects for each vCard in the file.

```
else
{
    foreach ($vCard as $vCardPart)
    {
        print_r($vCardPart -> n);
        print_r($vCardPart -> tel);
    }
}

```

Every vCard element is accessible as an object member by the vCard element name. Every element is an array with the data parsed out of the file. It is possible to specify an option to the vCard constructor that will let you access every element as a single value in cases where there is just one value, e.g.:

```
$vCard = new vCard('Example3.0.vcf', false, array('Collapse' => true));

```

More on usage in [the wiki](https://github.com/nuovo/vCard-parser/wiki)

See also:

-  - A MIME Content-Type for Directory Information
-  - vCard MIME directory profile
-  - vCard Extensions for Instant Messaging (IM)

TODOs planned:

- Add support for non-standard ("X-...") elements;

###  Health Score

28

—

LowBetter than 54% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity24

Limited adoption so far

Community7

Small or concentrated contributor base

Maturity49

Maturing project, gaining track record

 Bus Factor1

Top contributor holds 100% of commits — single point of failure

How is this calculated?**Maintenance (25%)** — Last commit recency, latest release date, and issue-to-star ratio. Uses a 2-year decay window.

**Popularity (30%)** — Total and monthly downloads, GitHub stars, and forks. Logarithmic scaling prevents top-heavy scores.

**Community (15%)** — Contributors, dependents, forks, watchers, and maintainers. Measures real ecosystem engagement.

**Maturity (30%)** — Project age, version count, PHP version support, and release stability.

###  Release Activity

Cadence

Every ~436 days

Total

3

Last Release

911d ago

### Community

Maintainers

![](https://www.gravatar.com/avatar/0305c909e718f5addcfac4947fa258274c167f4baf16cab960a141a24d95f7f8?d=identicon)[Worksection](/maintainers/Worksection)

---

Top Contributors

[![vadymskk](https://avatars.githubusercontent.com/u/68269374?v=4)](https://github.com/vadymskk "vadymskk (9 commits)")

### Embed Badge

![Health badge](/badges/worksection-vcard/health.svg)

```
[![Health](https://phpackages.com/badges/worksection-vcard/health.svg)](https://phpackages.com/packages/worksection-vcard)
```

PHPackages © 2026

[Directory](/)[Categories](/categories)[Trending](/trending)[Changelog](/changelog)[Analyze](/analyze)
