Skip to content

Instantly share code, notes, and snippets.

@xnekv03
xnekv03 / verifyIC.php
Last active December 29, 2020 20:39 — forked from dg/verifyIC.php
Ověření rodného čísla a IČ
<?php
function verifyIC($ic)
{
// be liberal in what you receive
$ic = preg_replace('#\s+#', '', $ic);
// má požadovaný tvar?
if (!preg_match('#^\d{8}$#', $ic)) {
return FALSE;