chuano/spain-document-generator

Spanish CIF, NIF and NIE random generator.

1.0.0 2020-03-29 17:36 UTC

This package is auto-updated.

Last update: 2024-04-29 04:27:18 UTC


README

Spanish CIF, NIF and NIE random generator.

Installation

composer require chuano/spain-document-generator

Usage

All parameters are optional. By default the separator will be empty and the type will be B.

<?php
require_once 'vendor/autoload.php';

use Chuano\Util\SpainDocumentGenerator\SpainDocumentGenerator;

$generator = new SpainDocumentGenerator();

// CIF type 'B' and control digit separator char '-'
$cif = $generator->cif('B', '-');
// Control digit char '-'
$nif = $generator->nif('-');
// Control digit char '-'
$nie = $generator->nie('-');