Skip to content

Instantly share code, notes, and snippets.

View pouyadarabi's full-sized avatar
🎯
Focusing

Pouya Darabi pouyadarabi

🎯
Focusing
View GitHub Profile
@pouyadarabi
pouyadarabi / validation.php
Created September 8, 2020 10:33
http://www.are.ir/article/shenasameli/shenasa_meli.htm تبدیل شده از کد PHP بررسی صحت شناسه ملی حقوقی در
function isValidLegalNationalID($code)
{
$length = strlen($code);
if ($length < 11 || intval($code) == 0)
return false;
if (intval(substr($code, 3, 6)) == 0) return false;
$c = intval(substr($code, 10, 1));
$d = intval(substr($code, 9, 1)) + 2;
$z = [29, 27, 23, 19, 17];
$s = 0;