Download the PHP package reload/cpr without Composer
On this page you can find all versions of the php package reload/cpr. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Package cpr
Short Description CPR: Danish personal identification numbers
License MIT
Homepage https://github.com/reload/cpr
Informations about the package cpr
CprNumber
A class representing Danish civil registration numbers (CPR numbers).
The CPR number is a ten digit number with the format DDMMYY-SSSS, where the first six digits represent the date of birth and the last four digits are a sequence number.
The CPR number is used in Denmark to uniquely identify persons in various systems, and is also used as a personal identification number in many contexts.
The class represents a CPR number as a read-only value object, and provides methods for working with, formatting, and validating CPR numbers.
- Full name:
\Reload\Cpr\CprNumber
Methods
__construct
Construct a CPR number readonly value object from a string.
Parameters:
Parameter | Type | Description |
---|---|---|
$cpr |
string | A string with the CPR number. |
Throws:
If the CPR number does not contain 10 digits
-
InvalidCprNumberFormat
If the date in the CPR number doesn't exist.
NonExistingDate
__toString
Format the CPR number in the traditional format (120345-6789).
See Also:
- \Reload\Cpr\CprNumber::formatPretty() -
formatPretty
Format the CPR number in the traditional format (120345-6789).
formatNumbersOnly
Format the CPR number using numbers only (1203456789).
isFemale
Check if the CPR number represents a female person.
isMale
Check if the CPR number represents a male person.
getDateTimeImmutable
Get a DateTimeImmutable object from the CPR number.
Parameters:
Parameter | Type | Description |
---|---|---|
$timezone |
?\DateTimeZone | A DateTimeZone object representing the desired time zone. If timezone is omitted or null the current timezone will be used. |
validateModulus11
Validate the CPR number using the modulus 11 algorithm.
NOTICE: CPR numbers are no longer required to fulfill the modulus 11 check. You should NOT use this method to validate or dismiss CPR numbers.