pesel() public static method

Checks PESEL Universal Electronic System for Registration of the Population in Poland
public static pesel ( string $check ) : boolean
$check string Value to check
return boolean Success.
Example #1
0
 /**
  * Test the pesel method of PlValidation
  *
  * @return void
  */
 public function testPesel()
 {
     $this->assertTrue(PlValidation::pesel('49040501580'));
     $this->assertFalse(PlValidation::pesel('49040501680'));
     $this->assertFalse(PlValidation::pesel('49040501581'));
 }